Please Help, I’ve created an archive-product.php and in it I have my, php woocommerce_content().
In the global-top-banner above this, I have my usual php code to call in my theme banner image (using my usual ACF image ID). Works perfectly on all other, page.php, single.php, category.php, etc…
The button to add the picture is showing on the backend on the Store page as its seeing my ACF rule to add to all default pages, and I can obviously select the image I’d like to choose from the media library here.
However I can not find any ACF selector to display the image on this Store page??…
I’ve tried trying to add a;
Template Name: Woo Page – but that doesn’t work – as it doesn’t appear on the Store (backend) to select.
I’ve read that… even though this Store appears as a page it gets converted to a ‘Special Archive’ but I can’t tap into this using Taxonomy = Category or Taxonomy = Prod_Category…
How do I get this image to show on this page please…
<!– Main –>
<main>
<!– Top Banner –>
<div class=”thin-top-banner”>
<?php get_template_part(‘top-banners/global’,’top-banner’);?>
</div>
<!– Section One | Centered Content –>
<section class=”centered-content”>
<div class=”woo-content-container”>
<?php woocommerce_content();?>
</div>
</section>
</main>