Help with removing watermark in my site

Moana33
Tourist
16 0 2

Hello, I am trying to somehow remove the: "Created with ..." watermark in my site's mobile menu's bottom, using code...
My theme is "Debut".

Replies 5 (5)

JHKCreate
Shopify Expert
3571 639 916

Hello @Moana33 ,

Please add this code to your theme.css file:

small.site-footer__copyright-content.site-footer__copyright-content--powered-by {
    display: none;
}


Let me know if that works! 

Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com
Moana33
Tourist
16 0 2

Thanks but I meant that in my mobile version of the web I have watermark on the menu (navigator) at the bottom it says "Created with Mobile Menu"
Could you provide me please a code that removes it?

JHKCreate
Shopify Expert
3571 639 916

This is part of the free version of the app I believe, can't assist on that unfortunately as it would be breaching the agreement in place with the plan you've selected for Mobile Menu. 

Did we solve your issue? Like & Mark As Solution to help the community
Should you need any direct help: contact@jhkcreate.com

Learn more about us: jhkcreate.com
Ninthony
Shopify Partner
2329 350 1023

Well, if you don't care about any kind of agreement with Mobile Menu... you could hide it with javascript. You can set an interval for every half second to see if their element has appeared on the website yet, then hide it, and clear the interval. This can go in theme.liquid right before the closing </body> tag:

<script>
function checkForWaterMark(){
  let menu = document.querySelector('.dmenu-watermark');
  if(menu){
    menu.style.display = 'none';
    clearInterval(watermarkCheck);
  }
}

let watermarkCheck = setInterval(checkForWaterMark, 500);
</script>

 

If my solution helped you, please like it and accept it as the solution!
If you'd like to make any edits to your store, please send me a personal message and we can discuss what you'd like to accomplish 😄
Moana33
Tourist
16 0 2

Oh I didn't know it is part of the free plan agreement with them, lol.
So I won't try to hide that, I will probably pay for the premium version