• Resolved jamesbil

    (@jamesbil)


    Hi,
    is there any way to remove the tab title above the content? It does not need to be shown twice.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • /wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/public/class.yikes-woo-tabs-display.php

    online: 115

    Thread Starter jamesbil

    (@jamesbil)

    Yes I have this plugin. But is there any way to remove the tab title above the content? It does not need to be shown twice.

    Plugin Contributor Tracy Levesque

    (@liljimmi)

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

    Hi @jamesbil

    There are a few ways to hide/remove the title.

    • Hide it with CSS
    • Add a function to your functions.php file to remove it
    • Use the Pro version (we have a setting to remove it)

    Personally, I think the CSS route is the easiest DIY way to go.

    I took a look at your site and this should do it:

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

    You have a few options to add CSS code:

    • If you’re using WordPress 4.7 or higher, you can go to Appearance > Customize > Additional CSS and place the code there.
    • 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 paste it in there.
    • You can use a plugin like Simple Custom CSS or Jetpack and enter the code in their Custom CSS area

    Thank you,
    -Tracy

    Thread Starter jamesbil

    (@jamesbil)

    Thanks, but the code has an error, it won’t work.

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