• Resolved eukally

    (@eukally)


    Thats a big problem, after created a lot of content, and in the beginning was working.

    btw.: its even not working after deactivated all plugins and inserting:

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Tracy Levesque

    (@liljimmi)

    ?????? YIKES, Inc. Co-Owner

    Hello,

    Do you have a link to a product with tabs so we can take a look?

    Thank you,
    -Tracy

    Thread Starter eukally

    (@eukally)

    How can I send you personally the link?

    Plugin Contributor Tracy Levesque

    (@liljimmi)

    ?????? YIKES, Inc. Co-Owner

    You can send it to plugins at yikesinc.com

    Thread Starter eukally

    (@eukally)

    Did you receive my mail?

    @eukally,

    I’m sorry you’re having issues did you receive an email response yet? I can’t find your email in our inbox so I’m not sure if you got any help.

    What exactly is happening? You said you deactivated all plugins so does that mean you only had Custom Product Tabs and the Avada theme active?

    Avada is what is actually displaying your custom tabs, we’re simply adding extra tabs into the already existing tabs that WooCommerce is tracking. (Like the Additional Info, Reviews etc.)

    When you choose a theme for WooCommerce not all themes are created equally or have all the required functionality of WooCommerce. If tabs are not working I would suggest contacting the creators of your theme and ask them to support additional tabs in their theme.

    Most likely they’ve just “hard coded” the default woocommerce tabs into the theme instead of allowing whatever tabs are generated to be applied. So, my best advice is to contact your theme creator and let them know this information and feel free to point them to this thread if they have trouble understanding what you need.

    Cheers,

    Freddie

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘created tabs are not visible with avada’ is closed to new replies.