Removing Pickaxe tag when adding my URL in facebook, etc

How do I remove the footer Pickaxes tag from my websites? I like it to read, ‘developed by…’

Not sure if we are able to edit that, but it appears it is due to these two lines in the header.

You could try inserting this dynamic Javascript code before the body to update is through Javascript. However, some social media websites that crawl your page my not execute the script meaning it will not work.

function updateMetaTags(description) {
// Update regular description
const descriptionMeta = document.querySelector(‘meta[name=“description”]’);
if (descriptionMeta) {
descriptionMeta.setAttribute(‘content’, description);
}

// Update og:description
const ogDescriptionMeta = document.querySelector('meta[property="og:description"]');
if (ogDescriptionMeta) {
    ogDescriptionMeta.setAttribute('content', description);
}

}

// Usage:
updateMetaTags(‘Your new description here’);

Thank you kindly. I’ll give an update after I inject the code then try adding a link in Facebook.

Hey @gemini5 I misunderstood you earlier. Check out Mike’s response below!

1 Like

Thank you very much. Makes sense.

1 Like

Are you talking about the part that says “Launch a customizable page with all your pickaxes”?

That is the description of the studio. You can edit this on the landing page.