Re: Hide collage field on productpage when not filled with images (Trade theme)

Solved

Hide collage field on productpage when not filled with images (Trade theme)

TOC-MR
Excursionist
36 1 6

Hi,

 

On my productpage i added a field with collage images. However sometimes you don't have enough images to use to fill this section. How can i hide this field automatically when in the backend images are not filled (collage is filled by metafields)?

 

page with images

TOCMR_0-1719574939899.png


page when there are not enough images

 

TOCMR_1-1719575052296.png

 

Thanks! R.

 

Accepted Solutions (2)
namphan
Shopify Partner
2210 290 328

This is an accepted solution.

Hi @TOC-MR,

Please go to collage.liquid file and add code:

{% if product.metafields.custom.name_01.value != blank and product.metafields.custom.name_02.value != blank and product.metafields.custom.name_03.value != blank
%}
{% endif %}

 

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com

View solution in original post

namphan
Shopify Partner
2210 290 328

This is an accepted solution.

Hi @TOC-MR,

Please go to video.liquid file and add code:

{% if product.metafields.custom.video.value != blank %}
{% endif %}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com

View solution in original post

Replies 8 (8)

namphan
Shopify Partner
2210 290 328

Hi @TOC-MR,

You can add conditions to it, ex:

{% if product.metafields.custom.image.value != blank %}
{% endif %}

you can try with name of metafields, it will work fine

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
TOC-MR
Excursionist
36 1 6

Hi, @namphan where do I need to add this one in css?

namphan
Shopify Partner
2210 290 328

Hi @TOC-MR,

It is not CSS code, it is changed directly in Liquid code.

If you have no experience with code, I can help you add it.

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
TOC-MR
Excursionist
36 1 6

Hi @namphan,

 

I have sent you an DM. If you explain it to me step by step, I think I can add it. 

namphan
Shopify Partner
2210 290 328

This is an accepted solution.

Hi @TOC-MR,

Please go to collage.liquid file and add code:

{% if product.metafields.custom.name_01.value != blank and product.metafields.custom.name_02.value != blank and product.metafields.custom.name_03.value != blank
%}
{% endif %}

 

Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
TOC-MR
Excursionist
36 1 6

Hi @namphan  Thanks! This is working for the collage section, however the video section is still visible while metafield is empty and no youtube url is linked. I've tried to copy/adjust the code, however video section still visible. So i guess i am doing something wrong 🙂

namphan
Shopify Partner
2210 290 328

This is an accepted solution.

Hi @TOC-MR,

Please go to video.liquid file and add code:

{% if product.metafields.custom.video.value != blank %}
{% endif %}
Coffee tips fuels my dedication.
Shopify Development Service
PageFly Page Builder Optimize your Shopify store (Free plan available)
Need help with your store? namphan992@gmail.com
TOC-MR
Excursionist
36 1 6

@namphan it's both working. Thank you very much!