Toggle/Accordion Style for WooCommerce Product Description

Posted in: Newspaper
Post count: 87

I’m using WooCommerce for my shopping pages, and I want to display product descriptions in a toggle/accordion style on some pages, similar to this example: https://app.supademo.com/image/cmgvmj51f03dhz30ic7lh55de.

This style provides a compact, neat, and user-friendly look, but I noticed that TagDiv Composer does not have a built-in toggle description element.

Could you please advise if there’s a way to implement this for WooCommerce product descriptions, either through custom CSS, shortcode, or a compatible method within the theme?

Post count: 87

and also i want one more thing like present showing sale tag in my page but i want percentage discount label instead of sale label

Post count: 35449

Hi,
Unfortunately, the theme do not have that option for the Description of products it have some similar options, like read more on Woo Product Description https://i.imgur.com/82MRt9T.png, and also it has the tab it as a tabs version – https://i.imgur.com/QNEBXkc.pnghttps://i.imgur.com/hac5zLF.png

Post count: 35449

Related to the percentage discount label instead of sale label you need to try some plugins.

Post count: 87

I’m trying to use plugins but those plugins not showing percentages, please suggest any plugin theme supported plugin for percentage

Post count: 35449

Hi,
If all products will have the label with teh same procent then you cna use a hook.
use a child theme and set in functions.php file from child this function:
add_filter('woocommerce_sale_flash', 'woocommerce_custom_sale_text', 10, 3); function woocommerce_custom_sale_text($text, $post, $_product) { return '[NEW TEXT]'; }

The results – https://i.imgur.com/BOt46dS.pnghttps://i.imgur.com/TgFDO3R.png

Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.