I want to modify HTML code of woo-commerce featured product widget. Problem is that I can't find it inside my template folder/plugin folder.
Does someone knows how to modify featured product widget of woo-commerce?
I want to modify HTML code of woo-commerce featured product widget. Problem is that I can't find it inside my template folder/plugin folder.
Does someone knows how to modify featured product widget of woo-commerce?
This is modified via the content-widget-product.php template, located in
/woocommerce/templates/
.To override this template, copy:
woocommerce/templates/content-widget-product.php
toyourtheme/woocommerce/content-widget-product.php
, and make any necessary modifications in the copied file (not the original).For information on correctly modifying Woocommerce templates, please see the docs on overriding WooCommerce templates.
I've done this with random products, but you can change whatever class you want, just change the file names...
add to functions.php
Note: don't forget to change the path, which is relative to functions.php!
Copy
wp-content/plugins/woocommerce/classes/widgets/class-wc-widget-random-products.php
to
wp-content/templates/%theme name%/woocommerce/classes/class-wc-widget-random-products.php
Note: change %theme name% to your theme name!
Add the widget to your sidebar/footer/etc, change anything in your class in it's new place, and you're done.