Before asking the question I want to tell you that I have already asked the question in https://stackoverflow.com/questions/15025213/wordpress-woocommerce-template-file-overiding
I am using the WooCommerce plugin to develop a website. Everything is fine with WooCommerce. As per my requirement, I have configured my home page as a shop base page from the WooCommerce dashboard to make my home page the shop page. Now my requirement is to place some images which should be uploaded from the admin side and to show some text over the images. For that feature, I searched over Google and some people suggested that I use WordPress Advanced Custom Fields. I just installed it.
Now I saw that WooCommerce is not using my custom theme. It is using its own custom theme. Since I want to show images and text using the Advanced Custom Fields plugin, I really need my own custom template to use the queries for images and text. Then I again searched over the Google for a solution and I got the suggestion to just make a copy of the theme’s page.php
into woocommerce.php
and then just replace the code:
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
with
<?php woocommerce_content(); ?>
I did that but still I am not getting my custom fields from Advanced Custom Fields. So kindly help me. Any suggestions and help will be appreciable. Thanks.
My code to show the Advanced Custom Fields for image and text is like this:
<?php $product_tab_banner = get_field('product_tab_banner');
if($product_tab_banner): ?>
<?php var_dump($product_tab_banner); ?>
<div class="nt-highlighted-products">
<img src="https://wordpress.stackexchange.com/questions/88033/<?php echo $product_tab_banner["url']; ?>" alt="https://wordpress.stackexchange.com/questions/88033/<?php echo $product_tab_banner["alt']; ?>" width="https://wordpress.stackexchange.com/questions/88033/<?php echo $product_tab_banner["sizes']['featured_product-width'];?>" height="https://wordpress.stackexchange.com/questions/88033/<?php echo $product_tab_banner["sizes']['featured_product-height'];?>" title="https://wordpress.stackexchange.com/questions/88033/<?php echo $product_tab_banner["title']; ?>" />
</div>
<?php endif; ?>
I am using the WordPress TwentyEleven theme.