What's new
HTML Forums | An HTML and CSS Coding Community

Welcome to HTMLForums; home of web development discussion! Please sign in or register your free account to get involved. Once registered you will be able to connect with other members, send and receive private messages, reply to topics and create your very own. Our registration process is hassle-free and takes no time at all!

How can I remove or change text that gets sent with my website link?

sergioq

New member
I had someone through me together a quick website since HTML is the one of the few things I really do not program. They did a great job, I have my menus, my CSS, and mobile versions.

But whenever my website goes out in a link on a FB message say it looks like this

www.example.com
Starter Template For Bootstrap



I have these three lines in my code


Code:
<link rel="canonical" href="https://getbootstrap.com/docs/4.0/examples/starter-template/">
<link href="https://v4-alpha.getbootstrap.com/dist/css/bootstrap.min.css" rel="stylesheet">   
<link href="https://v4-alpha.getbootstrap.com/examples/starter-template/starter-template.css" rel="stylesheet">

As well throughout the page there are scattered:

Code:
<script src="js/bootstrap.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="../../dist/js/bootstrap.min.js"></script>

Is there a way to rename them so they don't advertise every time I send out my website?
 
Sure! What you need to do is to use the inspector in the chrome browser to inspect the elements which contains their advert and then source its location also. You will then have to login to your cpanel
file manager and remove the line of code from where you sourced it.

I hope this helps
 
Can't figure which one....and the funny thing is that their slogan only appears when sending the link from Facebook's iPhone messenger.
 

Attachments

  • Untitled.png
    Untitled.png
    7.6 KB · Views: 1
Back
Top