You can send your questions to my email to get faster answer in 24 hours (free).
Buy me a coffee

Rename a text from URL

#1. Suppose you have a portfolio page with the URL like this:

  • /all-work/apple
  • /all-work/microsoft
  • /all-work/instagram

You want to change “all-work” to “top-10” so the URL will be

  • /top-10/apple
  • /top-10/microsoft
  • /top-10/instagram

#2. You can use this code to All Work Page Header Code Injection

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
$(document).ready(() => {
    const links = $('.grid-item')
    for (let i=0; i<links.length; i++) {
        const href = $(links[i]).attr('href')
        $(links[i]).attr('href', href.replace('all-work', 'top-10'))
    }
})
</script>

Ask me a question, free

If your site is private or in trial, just setup password and share url. See how to: https://beaverhero.com/squarespace-how-to/
Please check your email carefully. Recently I got a lot of questions with wrong emails.

If you haven't heard from me within 24 hours please check your junk/spam folder