Roland

Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • in reply to: css class "tribe-events-nav-next" not showing up #937487
    Roland
    Participant

    Hi George,

    Added an event in the future, but still no ‘next month’ link/button.

    Regards,

    Roland de Lepper
    http://webinweb.nl

    in reply to: css class "tribe-events-nav-next" not showing up #935823
    Roland
    Participant

    Hi George,

    After removing the code in functions.php, the problem remains.

    Regards,

    Roland de Lepper
    http://webinweb.nl

    in reply to: css class "tribe-events-nav-next" not showing up #935568
    Roland
    Participant

    Hi Gerald,

    Do you already have a solution for my issue?

    Kind regards,

    Roland de Lepper
    WebinWeb Design
    http://webinweb.nl

    in reply to: css class "tribe-events-nav-next" not showing up #932918
    Roland
    Participant

    Hi george,

    Active plugins:
    1) Advanced Custom Fields
    2) Contactform7
    3) Duplicator
    4) Meta Slider
    5) Simple Lightbox
    6) The Event Calendar
    7) The Event Calendar PRO
    8) TimyMCE Advanced
    9) WordPress SEO (Yoast)
    10) WYSIWYG Widgets / Widget Blocks

    All Plugins are deactivated except for the 2 Calendar plugins.
    WP-debug is set to true
    Theme is Twenty-Fiftheen.

    Maybe this is interesting too. It just came up to me that i’ve added some code in functions.php:

    /*
     * Removes the Google Calendar and iCal single event links
     */
     
    add_action('tribe_events_single_event_before_the_content', 'tribe_remove_single_event_links');
     
    function tribe_remove_single_event_links () {
     remove_action( 'tribe_events_single_event_after_the_content', array( 'TribeiCal', 'single_event_links' ) );
    }
     
    /*
     * Uncomment the following action to add the Google Calendar Link
     */
     
    //add_action('tribe_events_single_event_after_the_content', 'tribe_add_gcal_link');
     
    function tribe_add_gcal_link() {
     
     // don't show on password protected posts
     if (is_single() && !post_password_required()) {
     echo '
    <div class="tribe-events-cal-links">';
    echo '<a class="tribe-events-gcal tribe-events-button" title="' . __( 'Add to Google Calendar', 'tribe-events-calendar' ) . '" href="' . tribe_get_gcal_link() . '">+ ' . __( 'Google Calendar', 'tribe-events-calendar-pro' ) . '</a>';
    echo '</div>
    <!-- .tribe-events-cal-links -->';
     }
     
    }
     
    /*
     * Uncomment the following action to add the iCal Link
     */
     
    //add_action('tribe_events_single_event_after_the_content', 'tribe_add_ical_link');
     
    function tribe_add_ical_link() {
     
     // don't show on password protected posts
     if (is_single() && !post_password_required()) {
     echo '
    <div class="tribe-events-cal-links">';
    echo '<a class="tribe-events-ical tribe-events-button" href="' . tribe_get_single_ical_link() . '">+ ' . __( 'iCal Import', 'tribe-events-calendar' ) . '</a>';
    echo '</div>
    <!-- .tribe-events-cal-links -->';
     }
     
    }

    Good luck!

    in reply to: css class "tribe-events-nav-next" not showing up #932183
    Roland
    Participant

    Hi George,

    At the moment, this is not possible, because I have to work on this website today. I think Thursday would be possible. Is that suitable for you?

    BTW, I’m based in The Netherlands. Maybe handy for the time-zone, if that is an issue.

    Roland

    in reply to: css class "tribe-events-nav-next" not showing up #931852
    Roland
    Participant

    Hi George,

    To be sure I deactivated all my other plugins again and checked again. Still, there is only the “previous month” button and not the “next month” button. And again I changed the theme to Twenty Fiftheen with the same results.

    I didn’t noticed any difference with the buttons. It’s exactly the same behaviour.

    Regards,

    Roland de Lepper
    WebinWeb Design

Viewing 6 posts - 1 through 6 (of 6 total)