This topic has 4 replies, 2 voices, and was last updated 8 years, 3 months ago ago by Olga Barlow
Hi, I wanted an option for to have the Size guide image automatically to all products. I asked here https://themeforest.net/item/xstore-responsive-woocommerce-theme/15780546/comments?page=13&filter=all#comment_14444108 but you told me cannot be done.
Because I want the same image for sizing guide to all products I want to know where in theme’s code is the Size guide image so I try to alter it myself and always display the same size guide image on every product.
Hello,
You may add the following code in functions.php of child theme and use link to your image in href
function etheme_size_guide() { ?>
<div class="size-guide">
<a href="link_to_your_image_here" rel="lightbox"><?php esc_html_e('Sizing guide', 'xstore'); ?></a>
</div>
<?php
}
Regards
It worked! thanks a lot!
Hello,
You are welcome!
Regards
You must be logged in to reply to this topic.Log in/Sign up