How to remove the link from this writing?

Topic summary

A Shopify store owner discovered an unwanted link in their footer that redirects visitors to a Shopify website. They want to remove or disable this clickable element to prevent customers from leaving their site.

Proposed Solution:
A community member suggested adding CSS code to disable the link:

  • Target the footer localization element
  • Add pointer-events: none to the CSS
  • This prevents the link from being clickable

Technical Details:

  • The fix involves modifying the store’s CSS file
  • Specific selector targets the footer aside localization item anchor tag

The discussion appears to be ongoing, awaiting confirmation whether the CSS solution successfully resolved the issue.

Summarized with AI on November 23. AI used: claude-sonnet-4-5-20250929.

When I click on that part of the footer it’s sending me to a shopify website, how do I get that off? I don’t want people to click there and go to some website. If you have it as a theme editor or code, thank you.

Web site: https://colorluzes.com.br/

Hello @GustavoAlves ,

#shopify-section-footer > footer > div > div > aside > div.footer__aside-item.footer__aside-item–localization > p > a{pointer-events: none;}

add this line in your css file.