For example i have category coffee machines, and one template for coffee machine single product template, but for category coffee i want to have different single-product.php template, how to implement this? i haven't access to this post http://www.woothemes.com/support-forum/?viewtopic=83667 but it have similar question, with pages and categories in WordPress it simple, but how to do it in woocommerce?
Tell me more
×
WordPress Answers is a question and answer site for
WordPress developers and administrators. It's 100% free, no registration required.
|
Make the new template and name it: taxonomy-product_cat-Your_category_product_slug.php as simple as this |
|||
|
|
|
You could change your single-product.php to just be a redirect to the correct template depending on what product category the current product it. To do so you'd copy single-product.php to your theme's woocommerce folder. Rename it to single-product-default.php or anything. Create another copy and call it single-product-coffee.php. You can make whatever changes you'd like to make to this one. Then in your single-product.php you could add a simple conditional to redirect to the appropriate single-product-something.php
|
|||
|
|