I want to rmeove it only from about us page ![]()
form here: https://kartbagrationvalley.com/blogs/news
Password: KBV
I want to rmeove it only from about us page ![]()
form here: https://kartbagrationvalley.com/blogs/news
Password: KBV
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';
Hello There,
{% if page.handle == 'about-us' %}
{% endif %}
also How to remove it from this page? ![]()