Shopify themes, liquid, logos, and UX
I want to rmeove it only from about us page 🙏
form here: https://kartbagrationvalley.com/blogs/news
Password: KBV
Solved! Go to the solution
This is an accepted solution.
{% if page.handle == 'about-us' %}
<style>
.baDropdownStyle.bottom_right {
display: none!important;
}
</style>
{% endif %}
You can hide it when the URL matches with the About Us URL.
let a = document.querySelector(".bacurr-dropdownChoices");
const isAboutUs = window.location.pathname === "/blogs/news";
if(isAboutUs) a.style.display = 'none';
This is an accepted solution.
{% if page.handle == 'about-us' %}
<style>
.baDropdownStyle.bottom_right {
display: none!important;
}
</style>
{% endif %}
also How to remove it from this page? 🙏
2m ago Learn the essential skills to navigate the Shopify admin with confidence. T...
By Shopify Feb 12, 2025Learn how to expand your operations internationally with Shopify Academy’s learning path...
By Shopify Feb 4, 2025Hey Community, happy February! Looking back to January, we kicked off the year with 8....
By JasonH Feb 3, 2025