Hi, @amisha-29
Steps:
-
Go to your Shopify Admin:
Online Store > Themes > Dawn > Edit code -
Locate the announcement bar section:
Find and open:
sections/announcement-bar.liquid -
Add a condition to render only on the cart page:
Wrap the entire content of the announcement bar with this {% if %} condition:
{% if request.page_type == 'cart' %}
{% endif %}
Your updated announcement-bar.liquid might look like this:
{% if request.page_type == 'cart' %}
{% endif %}
If you will unable to implement the same then I’m happy to do this for you, let me know.
Hope this helps! If yes then Please don’t forget hit Like and Mark it as solution!