/wp-content/plugins/yikes-inc-easy-custom-woocommerce-product-tabs/public/class.yikes-woo-tabs-display.php
online: 115
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
Thanks, but the code has an error, it won’t work.