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

    (@liljimmi)

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

    Hi Manyaherif,

    That question is answered on this thread: https://www.ads-software.com/support/topic/hideremove-title-of-tabs?replies=12

    Thank you!
    -Tracy

    Thread Starter manyakherif

    (@manyakherif)

    Unfortunately I have no coding knowledge ?? where would I replace this code?

    Plugin Contributor Tracy Levesque

    (@liljimmi)

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

    You have a few options to add CSS code:

    • If you created this theme yourself, you can just add it to your style.css file
    • If you’re using a theme you downloaded or bought you can make a child theme and add the code to your child theme’s style.css file
    • Your theme may have a “Custom CSS” option. If it does, then you can just pop it in there.
    • You can use a plugin like Simple Custom CSS or Jetpack and enter the code in their Custom CSS area
    Thread Starter manyakherif

    (@manyakherif)

    Thank you it worked ??

    Plugin Contributor Tracy Levesque

    (@liljimmi)

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

    Woot!

    Hi !

    A better way to remove the title than the above link would be to add the following lines to your functions.php

    add_filter( 'yikes_woocommerce_custom_repeatable_product_tabs_heading', 'remove_yikes_woocommerce_custom_tab_heading' );
    function remove_yikes_woocommerce_custom_tab_heading() {
    return '';
    }

    This will properly remove the title from the page instead of hiding it to the browser with “display:none”. It’s more elegant and more SEO friendly.

    Plugin Contributor yikesitskevin

    (@yikesitskevin)

    Hi @wordpressfab,

    Precisely. +1.

    Kevin.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to remove custom tab title’ is closed to new replies.