Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using woocommerce to develop an ecommerce store. Everything is fine with woocommerce. But I have one problem. As because I want to show some custom images with some texts in the product page(shop based page). So for that I thought wordpress advanced custom fields will be good. I made it install. And now I need to extract the image in the template file. But by going through woocommerce plugin I got that it doesn't use the wordpress template. Woocommerce is generating the total page (producr page) by itself. And Iwant to show some custom fields from wordpress advanced custom fields plugin. So can someone kindly tell me how to do this? Any help and suggestions will be really appreciable. Thanks...

I want that woocommerce shop page where all the products are shown should use my own custom template. So that I can use wordpress advanced custom fields code there

share|improve this question

2 Answers

In order to override a Woocommerce template from wp-content/plugins/woocommerce/templates, create a file with the same name in wp-content/themes/<your theme>/woocommerce. It will be used instead of the original one.

If you look at one of the original template files, you will actually find this instruction in a comment at the top:

Override this template by copying it to yourtheme/woocommerce/single-product.php

share|improve this answer
thanks for the reply but when I just made copy the woocommerce template folder and pasted it in my theme folder and using the advanced custom fields plugins to override shop page to show some images it is not showing there..Can you help me out? – when I just uninstalled the woocommerce plugin then the custom image from advanced custom fields is showing – NewUser Feb 23 at 6:59

WooCommerce doesn't use normal template files from your theme (it uses the header and footer etc but the bulk of the actual interior content is split into a lot of Woo template files).

You can copy the templates out of the plugins/woocommerce/templates directory and move them to the themes/yourtheme/woocommerce directory to override (just pick the ones you need).

A list of all the templates can be found here. A list of useful php hooks/filters to use for more advanced customization can be found here. Other useful resources are the CSS structure doc and this list of conditional template tags for WC.

There is kind of lackluster documentation for nitty-gritty theme development for WC so you will probably need to take some time to experiment with the templates in order to accomplish what you want, but it's decently commented and pretty easy to work with once you learn your way around.

share|improve this answer
+1 for proper documentation links, didn't even know those existed... – pixelistik Feb 22 at 14:40
@Ennui thanks fro the reply but when I just made copy the woocommerce template folder and pasted it in my theme folder and using the advanced custom fields plugins to override shop page to show some images it is not showing there..Can you help me out? – when I just uninstalled the woocommerce plugin then the custom image from advanced custom fields is showing – NewUser Feb 23 at 5:57
1  
The ACF plugin is made to work with normal Wordpress posts/pages. Woocommerce product pages use their own template file, which might not work with ACF out of the box. You should check out how to manually output custom fields in a template. – pixelistik Feb 24 at 21:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.