Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to modify product page in a woocommerce theme

I would like to modify the look of the item picker for multiple items. the bottom right part where can I find the file that holds this?

like image 943
Michael de Borst Avatar asked Feb 18 '17 14:02

Michael de Borst


People also ask

How do I change the product page in WooCommerce CSS?

You can add CSS codes using WordPress Theme Customizer. Navigate to Appearance > Customize in your WordPress dashboard. Scroll down and click “additional CSS” in the menu. You will find a text field to add your CSS codes.


Video Answer


1 Answers

You can edit wp-content/plugins/woocommerce/templates/content-single-product.php or copy

wp-content/plugins/woocommerce/templates/content-single-product.php

to

wp-content/themes/your-child-theme/woocommerce/content-single-product.php

and edit the copy template to suit. The copy template will override the plugin template and you can update WooCommerce without losing your custom template.

like image 167
oxy Avatar answered Sep 17 '22 08:09

oxy