• Resolved ebalsan

    (@ebalsan)


    Hi, sorry if this is a stupid question, I’m a complete beginner to everything.

    Is there a way to remove the second heading of a custom tab? To only have the title in the tab itself and not in the content as well. Ie ‘INGREDIENTS’ here. Can I remove the bolded heading somehow? (example)

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Hi @ebalsan,

    Yes! This is a very common request. You can do this with a PHP filter function:

    /**** YIKES Custom Product Tabs - Remove Tab Title ****/
    add_filter( 'yikes_woocommerce_custom_repeatable_product_tabs_heading', '__return_false' );

    Or you can do this with custom CSS:

    .yikes-custom-woo-tab-title {
        display: none;
    }

    Let me know if you need any help applying the CSS or PHP.

    Cheers,
    Kevin.

    Thread Starter ebalsan

    (@ebalsan)

    Ah, that’s perfect. Thank-you so much for the help!

    Perfect, it worked!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Tab Heading’ is closed to new replies.