How can I display the 'image-with-text' element only in the Vietnamese market?

I want the “image-with-text” element to be displayed only in the Vietnamese market, what should I do if I don’t want to display it in the English market? Anyone have any ideas, thanks a lot

My website: sahudemo1.myshopify.com

pass: sahudemo123456

Hi @LongLe

1: Online store > themes > Actions > Edit code > Layout > theme.liquid

2: paste before

{%- if template contains 'product' -%}

{%- endif -%}

Your solution is exactly what I need, but I want to correct a few points, that is, I want to change it to only display in Vietnamese language, not in English language. Thank

HI @LongLe

then try this code

{%- if template contains 'product' -%}

{%- endif -%}

I have replaced the section id with my section i’d like to show/hide, but the section still shows no matter what the Shopify.country == ‘code’ is.

My site is tripsitters.store and the section is #shopify-section-template–20380602925330__rich_text_6dtXEK just below the main image on the homepage.

I’d like to show the section on multiple markets and just not hide on the “international” (name and handle) market, so maybe you would flip around the script to hide when the market equals “international”.

Could you please help me @Kani ?