Viewing 4 replies - 1 through 4 (of 4 total)
  • Can you try 3.2.10 and see if this still occurs?

    Hi @akintern
    add this to your child-theme functions.php:

    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);
        }
    }

    And let me know if you have any other problem.

    This should be better:

    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);
    }

    Thread Starter akintern

    (@akintern)

    The code worked! Thank you so much d4z_c0nf.

    -Jenny

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Problems with The Event Calendar after Customizr 3.9 update’ is closed to new replies.