{% if product.handle == “red-light-oil-massager” %}
Show text ABC{% elsif product.handle == “purewater-derma-showerhead” %}show text xyz{% endif %}
I am using static text directly in custom liquid, it shows accordingly in admin panel when I am editing, but when I save and check live, it did not work, it keep showing “red-light-oil-massager” content on other product handle,
I have another similar case:-
I have slide groups, I am trying to show different slides, according to product Id’s, same error, even after deleting all content of 1 product slide, it still appearing on other product,
Like
{% if product.id == 12345 %}
show slides from 1-2-3
{%elsif product.id == 6789 %}
show slides from 4-5-6
{% endif %}
now after deleting complete slides and the text of slides 1-2-3,
The live site still showing 1-2-3 slides and text of slide on product ID 6789(while in admin panel it showing correct)
I have cleared the cache, but still not resolving, can anyone help me with this?
Note:- I am not using custom data, is that the problem?

