Cole

Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • in reply to: Query Altered #1423346
    Cole
    Participant

    I also want to clarify it is not related to events being out of order but with posts from other post types being out of order when using a custom WP_Query.

    in reply to: Remove Customizer Footer Styles #1232365
    Cole
    Participant

    Thank You. That seemed to work.

    in reply to: Remove Customizer Footer Styles #1230900
    Cole
    Participant

    This is what I have tried with no luck yet.

    function tribe_remove_customizer_style_tags() {
        if ( class_exists( 'Tribe__Events__Pro__Customizer__Main' ) ) {
            remove_action( 'wp_print_footer_scripts', array( Tribe__Events__Pro__Customizer__Main::instance(), 'print_css_template' ), 15 );
        }
    }
    add_action( 'init', 'tribe_remove_customizer_style_tags' );

    I also tried a simple

    remove_action( 'wp_print_footer_scripts', 'print_css_template', 15 );

    Sure it’s something simple missing. Appreciate your help on this.

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