Last active
May 29, 2019 13:56
-
-
Save paradoxicalNL/a41bc9012a797989e053f5ee7be15883 to your computer and use it in GitHub Desktop.
Woocommerce hide product description tab while preserving description
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add to child css, see: https://theme-fusion.com/documentation/avada/install-update/avada-child-theme/ | |
Edit the style.css in the avada-child folder. | |
/* | |
Theme Name: Avada Child | |
Description: Child theme for Avada theme | |
Author: ThemeFusion | |
Author URI: https://theme-fusion.com | |
Template: Avada | |
Version: 1.0.0 | |
Text Domain: Avada | |
*/ | |
.woocommerce-tabs.wc-tabs-wrapper ul.tabs.wc-tabs { | |
display: none; | |
} | |
.woocommerce-Tabs-panel.woocommerce-Tabs-panel--description.panel.entry-content.wc-tab { | |
margin-left: 0px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment