Custom Liquid visibility help

I have three custom liquid links to add podcast players that are supposed to be only supposed to be visible on one page as well as an image banner. However, they are appearing on all of the pages of my website. How do I limit them to only show on one page? Thank you

Hi @ericavinyl

You need to create a separate page template for that page and then add a custom liquid section on that template only.

This article will help you out.

https://help.shopify.com/en/manual/online-store/themes/theme-structure/templates

unfortunately it isn’t giving me the solution I need

Hi @ericavinyl ,

I hope you are doing well. Did you try to add conditional to restrict visiblity of custom liquid content. For example, you could wrap your content like this:

{% if request.path == “/” %}
// your content

{% endif %}

or retrict by template

{% if request.page_type == “index” %}

Hope this fixes your issue! ?