How do i show content if the pageid matches the conditions.
For example ive tried the following :
{% if page.id == "258384388" %}
Show Content
{% endif %}
{% if page.id contains "258384388" %}
Show Content
{% endif %}
{% if id == "258384388" %}
Show Content
{% endif %}
{% if id contains "258384388" %}
Show Content
{% endif %}
But still cant get it to work? I could probably also use page.handle but if the client changes the page title and/or handle, then it would mess everything up. Whereas the id wouldnt change regardless