customization - Adding shortcode to product short description

admin2025-01-07  3

I am new to wordpress and finding it quite easy to navigate round. I am stuck though. I am wanting to add a timer to the product short description when adding a new product to store. I have the timer plugin and the shortcode, but cannot for the life of me figure out how to get this on there or how to get it to work. This is a countdown timer of days and time. Any help would be very much appreciated :)

I am new to wordpress and finding it quite easy to navigate round. I am stuck though. I am wanting to add a timer to the product short description when adding a new product to store. I have the timer plugin and the shortcode, but cannot for the life of me figure out how to get this on there or how to get it to work. This is a countdown timer of days and time. Any help would be very much appreciated :)

Share Improve this question edited May 25, 2020 at 19:25 Rick Hellewell 7,1062 gold badges22 silver badges41 bronze badges asked May 25, 2020 at 18:02 BecsBecs 11 bronze badge
Add a comment  | 

2 Answers 2

Reset to default 0

You can add your shortcode directly to product short description.

https://docs.woocommerce.com/document/managing-products/#section-7

  1. Edit the Product: Go to your WordPress admin dashboard. Navigate to "Products" and select the product you want to edit.

  2. Enable Shortcodes for Product Descriptions:

By default, WooCommerce doesn't allow shortcodes in product descriptions for security reasons. To enable shortcodes, you can use a simple code snippet. In your theme's functions.php file (or in a custom plugin or a child theme's functions file), add the following code:

// Enable shortcodes in product short descriptions
add_filter('woocommerce_short_description', 'do_shortcode');
  1. Edit the Product Short Description:

After enabling shortcodes, you can edit the product short description for the product you selected in step 1. In the product editor, you'll find the "Short Description" field. Here, you can add your shortcode.

  1. Save Changes:

Make sure to save the product changes after adding the shortcode to the short description.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1736257840a468.html

最新回复(0)