How to display custom code image for a specific product only?

Solved

How to display custom code image for a specific product only?

Offertissimo
Excursionist
18 1 2

Hello, I made a custom code in my product page and this is the link: https://www.offertissimo.it/products/offerta-limitata-smartwatch-effettua-e-rispondi-alle-chiamate-c...

 

This is my custom code: 

 

<div style="margin-bottom: 0px;">
<img src="https://cdn.shopify.com/s/files/1/0730/8204/4765/files/34_99_1_-min.jpg?v=1683043327" width="340" />
</div>

 

This is the image:

34_99_1_-min.jpg

 

But this image be shown in all my products description. How I can insert a code that could be shown this image in only my relative product and not all the products?

 

Thank you, kind regards

Accepted Solution (1)

NomtechSolution
Astronaut
1245 113 153

This is an accepted solution.

To display the custom image only on specific product pages, you can use Shopify's conditional logic in your Liquid code. Here's an example of how you can modify your code to achieve this:

{% if product.handle == 'offerta-limitata-smartwatch-effettua-e-rispondi-alle-chiamate-c' %}
  <div style="margin-bottom: 0px;">
    <img src="https://cdn.shopify.com/s/files/1/0730/8204/4765/files/34_99_1_-min.jpg?v=1683043327" width="340" />
  </div>
{% endif %}

View solution in original post

Replies 3 (3)

NomtechSolution
Astronaut
1245 113 153

This is an accepted solution.

To display the custom image only on specific product pages, you can use Shopify's conditional logic in your Liquid code. Here's an example of how you can modify your code to achieve this:

{% if product.handle == 'offerta-limitata-smartwatch-effettua-e-rispondi-alle-chiamate-c' %}
  <div style="margin-bottom: 0px;">
    <img src="https://cdn.shopify.com/s/files/1/0730/8204/4765/files/34_99_1_-min.jpg?v=1683043327" width="340" />
  </div>
{% endif %}
Offertissimo
Excursionist
18 1 2

Hello, sorry but when i add this code the image be disappear... do you know why?

Offertissimo
Excursionist
18 1 2

Hello, could i use this code to hide the price only for this product?

Thank you and kind regards