Hello, when I add a long description I get this:
https://www.abcblossoms.com/product/agapanthus-dark-blue-80cm/
Note the additional tags showing above and below the Description - not sure why these are are showing - can you help me to hide? Selected Enable Product Tab in X-Theme (current version). Ty.
Also we have a similar site where we have hidden the ‘Description’ title using the css below - same css does not work on the abcblossoms.com site above. Please advise:
https://www.flowerpresale.com/cutflower/product/agapanthus-dark-blue-80-cm-1-27/
Here is the css that works for flowerpresale.com but not for abcblossoms.com:
// hide long description border
.woocommerce div.product .woocommerce-tabs .x-tab-content, .woocommerce-page div.product .woocommerce-tabs .x-tab-content,.woocommerce-tabs .x-nav-tabs {
border: none;
}
// hide long description ‘Description’ header/title
div#tab-description h2,
div#reviews .x-comments-area h2,
.woocommerce-tabs .x-tab-content .description_pane h2 {
display: none;
}
// hide long description ‘Description’ tab title
.description_tab {
display: none;
}
// remove extra white space above long description
.x-tab-content .x-tab-pane {padding-top: 0px !important; padding-bottom: 0px !important;
}

