Okay
  Public Ticket #2132649
Update error
Closed

Comments

  •  1
    Juan started the conversation
    My installation has been updated, it asks me to give UPDATE DATABASE.
    Once done, it gets completed and immediately takes me to the main page of the Wordpress administration panel and keeps asking me to do the UPDATE DATABASE.
    Like this continuously

  •  788
    Zhivko replied

    Hi,

    Open file \stachethemes_event_calendar\stachethemes_event_calendar.php

    at the top (line 4) change version number to 2.6

    Then go to Dashboard -> St. Event Calendar -> Updater and update the plugin to 2.6.5.

    After the update try the migration tool again.


    Stachethemes Developer

  •  1
    Juan replied

    Ok, it works.
    Another question. What do I have to do to see the description in the tooltip instead of the short description?
  •  788
    Zhivko replied

    Place this code in your theme functions.php file at the bottom:

    add_action('stec_after_html', function() {
        ?>
        <script type="text/javascript">
            (function ($) {
                if (typeof $.stecExtend !== 'function') {
                    return;
                }             $.stecExtend(function (m, data) {
                    $('#tooltip-' + m.glob.options.id).find('.stec-tooltip-desc').html(data.event.description);
                }, 'filterTooltipHtml');
            })(jQuery);
        </script>
        <?php
    });



    Stachethemes Developer

  •  1
    Juan replied

    Cool. It works!!
    I have found a bug.
    When you edit an event, it automatically sets today's date instead of keeping that of the original event
  •  788
    Zhivko replied

    Hi,

    This bug will be fixed in the next update.


    Stachethemes Developer