• I hope someone can help. I’ve been trying to solve this for days, crashed site 3 times and had to use ftp to access it.

    I’m using elementor with woocommerce. When I load elementor I am able to see and edit my product description tab.

    When I view my site the tab is there but it is empty.

    Initially it loaded on the desktop version but not mobile. I accidentally entered css into functions and I got a syntax error. Since resolving that and removing that code it now no longer shows on either desktop or mobile.

    I have searched everything, I have tried entering this code into functions

    add_filter( ‘yikes_woo_use_the_content_filter’, ‘__return_false’ );

    add_filter( ‘yikes_woo_filter_main_tab_content’, ‘yikes_woo_custom_tab_content_filter’, 10, 1 );

    function yikes_woo_custom_tab_content_filter( $content ) {

    $content = function_exists( ‘capital_P_dangit’ ) ? capital_P_dangit( $content ) : $content;
    $content = function_exists( ‘wptexturize’ ) ? wptexturize( $content ) : $content;
    $content = function_exists( ‘convert_smilies’ ) ? convert_smilies( $content ) : $content;
    $content = function_exists( ‘wpautop’ ) ? wpautop( $content ) : $content;
    $content = function_exists( ‘shortcode_unautop’ ) ? shortcode_unautop( $content ) : $content;
    $content = function_exists( ‘prepend_attachment’ ) ? prepend_attachment( $content ) : $content;
    $content = function_exists( ‘wp_make_content_images_responsive’ ) ? wp_make_content_images_responsive( $content ) : $content;
    $content = function_exists( ‘do_shortcode’ ) ? do_shortcode( $content ) : $content;

    if ( class_exists( ‘WP_Embed’ ) ) {

    // Deal with URLs
    $embed = new WP_Embed;
    $content = method_exists( $embed, ‘autoembed’ ) ? $embed->autoembed( $content ) : $content;
    }

    return $content;
    }

    But that hasn’t worked. And I’ve tried entering this into css

    @media only screen and (max-width: 767px) {
    #top div.product .woocommerce-tabs:last-child {
    display: block !important;
    }

    But this also hasn’t done anything. My site is in maintenance mode so I can send a link.

    I am using my custom functions plug in, I have tried adding product tabs plug in but again that’s not resolved it. I really hope someone can help. Many thanks

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

The topic ‘Woocommerce Elementor product description tab content not visible’ is closed to new replies.