Hi,
Is it possible to put the product description in an accordion and change the title of description?
Thanks
Hi,
Is it possible to put the product description in an accordion and change the title of description?
Thanks
Hi @mode500,
Thank you for reaching out to us. This may require WooCommerce template level customization which is regretfully outside of the scope we offer however there is an alternative way to do this. Please add the following code in the Theme Options > JS:
jQuery(document).ready(function($){
$('.woocommerce-product-details__short-description').insertAfter('.woocommerce-tabs .x-tab-content #x-legacy-panel-1 .text-muted');
$('.woocommerce-tabs .x-nav-tabs.one-up>li>a').html('Custom Text');
});
Change Custom Text with your title text. Don’t forget to clear all caches including your browser’s cache after adding the code. Let us know how this goes!
Hi thank you for getting back to me so fast!
I have decided to keep the description box as it is but I now want to change the background color of and remove all drop shadows boxes on my product pages.
Thanks again.
Hi again,
Try adding the following code in the Theme Options > CSS:
.woocommerce-tabs .x-tab-content {
background-color: #fafafa !important;
box-shadow: none !important;
}
If you would like to learn CSS, I am sharing few resources that you take a look to get started with CSS and an interesting tool that you can use to speed up the development process.
I recommend you to watch following video that will help you to get started with CSS.
Sometimes it can get a bit difficult to find out the right selector to be able to write the required CSS codes. A handy tool that can help you in this is Google Chrome dev tools. I am sharing the resource that you can refer to get started with dev tools.
https://developers.google.com/web/tools/chrome-devtools/css/
Let us know how this goes!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.