Hello,
on my woopress site the shortcodes like [product_brand] doesnt work.
I also tried this on my local site, that is a copy of my online site where de wp-admin login is in the private block. Unfortunatly that also didnt work. Can you help me? Thanks!
To apply to All Products
First, you should make sure that you’re making edits in a child theme – this allows you to customize your content without running the risk of an update removing your work. To learn more about how to customize a child theme, please visit our child theme tutorial, or you can read more about how child themes work in the WordPress Codex.
Then, you would open up the template file in your child theme and enter the following code (wrapped in a PHP tag) where you want the image to display:
echo do_shortcode(“[product_brand width="64" height="64" class="alignright"]“);
You’ll notice its just the same as the shortcode before, but wrapped in a PHP tag so you can apply it everywhere.