Re: Show a specific announcement bar for a specific URL

Solved

Show a specific announcement bar for a specific URL

drew_ward
Tourist
8 1 1

Hi Folks:

 

Does anybody know how to implement logic that shows a specific announcement bar but only for a selected page.   The announcement bar then would not be shown for other pages.

 

Thanks,

 

Drew

Accepted Solution (1)

oscprofessional
Shopify Partner
16343 2438 3177

This is an accepted solution.

Hello @drew_ward 

This guide will be helpful to you; please refer to it -

https://www.shopify.com/in/partners/blog/shopify-announcement-bar

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...

View solution in original post

Replies 7 (7)

StevieW
Shopify Partner
12 1 6

Hi Drew

 

https://shopify.dev/api/liquid/objects#request

 

Use 'request.path'. Something like 

{% if request.path includes <your string> %}
    ...do stuff
{% endif %}

 

Not tested, but you get the idea.

 

 

Want an easy way to open the Shopify Admin for Products, Pages, Collections and more? Use the FREE Shopify Admin Redirect chrome extension.
drew_ward
Tourist
8 1 1

Thank you.  

KetanKumar
Shopify Partner
37598 3668 12156

@drew_ward 

oh sorry for that issue can you please share store url

If helpful then please Like and Accept Solution. Partnership of your ️ Coffee Tips and my code can bring miracles.
Want to modify or custom changes on store Hire Me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

PaulNewton
Shopify Partner
7722 678 1626

You would basically need to either make a custom announcement bar section that changes things based on the logic that detects the page.

Or make an alternate theme.liquid layout then modify those pages to use that layout with a different announcement bar.

 

Either way generally and advanced theme customization.

Contact paull.newton+shopifyforum@gmail.com for the solutions you need


Save time & money ,Ask Questions The Smart Way


Problem Solved? ✔Accept and Like solutions to help future merchants

Answers powered by coffee Thank Paul with a Coffee for more answers or donate to eff.org


drew_ward
Tourist
8 1 1

Thank you Paul.

oscprofessional
Shopify Partner
16343 2438 3177

This is an accepted solution.

Hello @drew_ward 

This guide will be helpful to you; please refer to it -

https://www.shopify.com/in/partners/blog/shopify-announcement-bar

Hire us | Pass Core Web Vital | B2B Wholesale Experts | Claim Your Free Website Review |
Connect with Us: WhatsApp | Skype: oscprofessionals-87 | Email: pallavi@oscprofessionals.com |
Custom Shopify SolutionsPrivate Apps, Theme Customization & SEO | Digital Marketing |
OSCP Apps: Discount Suite | Wholesale App | Bundle & Upsell | Shipping Discount | and more...
drew_ward
Tourist
8 1 1

Thank you.    I'll review the link.