Code remains in website after deletion
-
I started to receive a message in Russian that (when translated) states if users coming to my site wanted to have the site translated into Russian. Looking at the source, it seemed that the GTS plugin was the cause. I tried to delete the plugin but the code remains in the page page source. I can’t find out where I can remove it. Any help?
Below is the code snippit:
<!– GTS Plugin Version 1.2.2 –>
<link rel=”alternate” hreflang=”ar” href=”https://zorten.com/language/ar/?page_id=3513″ />
<link rel=”alternate” hreflang=”bg” href=”https://zorten.com/language/bg/?page_id=3513″ />
<link rel=”alternate” hreflang=”ca” href=”https://zorten.com/language/ca/?page_id=3513″ />
<link rel=”alternate” hreflang=”zh-CHS” href=”https://zorten.com/language/zh-CHS/?page_id=3513″ />
<link rel=”alternate” hreflang=”zh-CHT” href=”https://zorten.com/language/zh-CHT/?page_id=3513″ />
<link rel=”alternate” hreflang=”cs” href=”https://zorten.com/language/cs/?page_id=3513″ />
<link rel=”alternate” hreflang=”da” href=”https://zorten.com/language/da/?page_id=3513″ />
<link rel=”alternate” hreflang=”nl” href=”https://zorten.com/language/nl/?page_id=3513″ />
<link rel=”alternate” hreflang=”et” href=”https://zorten.com/language/et/?page_id=3513″ />
<link rel=”alternate” hreflang=”fi” href=”https://zorten.com/language/fi/?page_id=3513″ />
<link rel=”alternate” hreflang=”fr” href=”https://zorten.com/language/fr/?page_id=3513″ />
<link rel=”alternate” hreflang=”de” href=”https://zorten.com/language/de/?page_id=3513″ />
<link rel=”alternate” hreflang=”el” href=”https://zorten.com/language/el/?page_id=3513″ />
<link rel=”alternate” hreflang=”he” href=”https://zorten.com/language/he/?page_id=3513″ />
<link rel=”alternate” hreflang=”hu” href=”https://zorten.com/language/hu/?page_id=3513″ />
<link rel=”alternate” hreflang=”id” href=”https://zorten.com/language/id/?page_id=3513″ />
<link rel=”alternate” hreflang=”it” href=”https://zorten.com/language/it/?page_id=3513″ />
<link rel=”alternate” hreflang=”ja” href=”https://zorten.com/language/ja/?page_id=3513″ />
<link rel=”alternate” hreflang=”ko” href=”https://zorten.com/language/ko/?page_id=3513″ />
<link rel=”alternate” hreflang=”lv” href=”https://zorten.com/language/lv/?page_id=3513″ />
<link rel=”alternate” hreflang=”lt” href=”https://zorten.com/language/lt/?page_id=3513″ />
<link rel=”alternate” hreflang=”pl” href=”https://zorten.com/language/pl/?page_id=3513″ />
<link rel=”alternate” hreflang=”pt” href=”https://zorten.com/language/pt/?page_id=3513″ />
<link rel=”alternate” hreflang=”ru” href=”https://zorten.com/language/ru/?page_id=3513″ />
<link rel=”alternate” hreflang=”sk” href=”https://zorten.com/language/sk/?page_id=3513″ />
<link rel=”alternate” hreflang=”es” href=”https://zorten.com/language/es/?page_id=3513″ />
<link rel=”alternate” hreflang=”sv” href=”https://zorten.com/language/sv/?page_id=3513″ />
<link rel=”alternate” hreflang=”th” href=”https://zorten.com/language/th/?page_id=3513″ />
<link rel=”alternate” hreflang=”tr” href=”https://zorten.com/language/tr/?page_id=3513″ />
<link rel=”alternate” hreflang=”uk” href=”https://zorten.com/language/uk/?page_id=3513″ />
<!– GTS Language Detection Script –>
<script type=”text/javascript”>// if there’s an existing on load function already, need to store
// it aside to make sure we don’t break template’s functionality.
var gts_existingOnLoad = window.onload;window.onload = function() {
if(gts_existingOnLoad) {
gts_existingOnLoad();
}var gts_acceptLang = ‘ru’;
var gts_message = ‘Хотите, чтобы прочитать эту веб-сайт на русском языке?’;
var gts_links = document.getElementsByTagName(‘link’);if(document.cookie.indexOf(‘gts_skipAutoDetect’) < 0) {
for(i = 0; i < gts_links.length; i++) {
if(gts_links[i].rel == ‘alternate’ && gts_links[i].hreflang == gts_acceptLang) {
if(confirm(gts_message)) {
window.location.href = gts_links[i].href;
}
else {
document.cookie = ‘gts_skipAutoDetect=yes’;
}
}
}
}
};https://www.ads-software.com/extend/plugins/gts-translation/
- The topic ‘Code remains in website after deletion’ is closed to new replies.