I am trying to make this page not have a visible title at the top, where it says “for sale” I want that to go away. Venue theme - https://thosewhobloom.com/pages/forsale
Hi @thosewhobloom ,
You can try this code by following these steps:
Step 1: Go to Shopify Admin → Online Store ->Theme → Edit code
Step 2: Search file theme.liquid
Step 3: Step 3: Inside tag head. After you’ll insert my code inside it
{% assign full_url = request.host | append: request.path %}
{%- if full_url contains 'forsale'-%}
{%- endif -%}
Here is result:
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()

