Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter akintern

    (@akintern)

    Update! I realized that I do not see the extra html code on a single event’s page when I am not logged in as an administrator, but when I am logged in this is what I see:
    https://i1121.photobucket.com/albums/l505/jennyvien94/EventsCalendarError1_zps6af5a77f.png

    Here is an image of the problems with list view:
    https://i1121.photobucket.com/albums/l505/jennyvien94/EventsCalendarError2_zps3f72eaee.png

    Is it possible that this problem occurred because I updated wordpress, my customizr theme, and some plugins?

    Thank you,
    Jenny

    Thread Starter akintern

    (@akintern)

    I have come to realize that the problem was caused by the Customizr Theme update. Everything returned to normal after going back to Customizr 3.2.8.

    Brook

    (@brook-tribe)

    Interesting we will keep an eye out for that. If you want to customizr but are still having issues, we’d happily work with the customizr team if there is something we can do to make them compatible. Cheers!

    – Brook

    Thread Starter akintern

    (@akintern)

    Hi @brook,

    Thank you very much for your response!
    I asked the Customizr team regarding this problem and they gave me the following code to add to my functions.php file.

    add_action(‘wp’, ‘tribe_events_comp’, 100);
    function tribe_events_comp(){
    global $wp_query;
    if ( ! $wp_query->tribe_is_event_query )
    return;
    if ( method_exists(‘TC_headings’, ‘tc_content_heading_title’) ){
    remove_filter(‘the_title’, array(TC_Headings::$instance, ‘tc_content_heading_title’), 0);
    }
    if ( method_exists(‘TC_headings’, ‘tc_add_edit_link_after_title’) ){
    remove_filter(‘the_title’, array(TC_Headings::$instance, ‘tc_add_edit_link_after_title’), 2);
    add_action(‘tribe_events_after_the_event_title’, function(){
    global $post;
    echo TC_Headings::$instance->tc_add_edit_link_after_title($post->the_title) ;
    });
    }
    if ( method_exists(‘TC_headings’, ‘tc_add_comment_bubble_after_title’) )
    remove_filter(‘the_title’, array(TC_Headings::$instance, ‘tc_add_comment_bubble_after_title’), 1);
    }

    As a result, my events calendar looks amazing and I am running on the latest version of Customizr theme.

    -Jenny

    Brook

    (@brook-tribe)

    Thanks for sharing their solution Jenny. Based on that solution I’d guess that they added a new feature surrounding titles that is conflicting with The Events Calendar. That is sad to see, but it was super awesome of them to provide a workaround!

    Cheers!

    – Brook

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Title summary, venue details, and organizer Information not displaying properly’ is closed to new replies.