- Thank you received: 0
how to remove the alien links
-
dey
Inactive member -
Topic Author
- New Member
-
Less
More
12 years 1 week ago #28641
by dey
how to remove the alien links was created by dey
how to remove the alien links?
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 1 week ago #28645
by ivan.milic
Replied by ivan.milic on topic how to remove the alien links
What do you mean by "alien" links?
Please Log in to join the conversation.
-
dey
Inactive member -
Topic Author
- New Member
-
Less
More
- Thank you received: 0
12 years 1 week ago #28656
by dey
Replied by dey on topic how to remove the alien links
inks that I did not set, and that lead to other sites.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
12 years 1 week ago #28658
by ivan.milic
Replied by ivan.milic on topic how to remove the alien links
First do this:
Open:
templates/hot_food_spirit/js/hot_food_spirit.js
replace:
jQuery(".scroll, .mp_topmenu a").click(function(event){
event.preventDefault();
jQuery('html,body').animate({scrollTop:jQuery(this.hash).offset().top}, 500);
});
with:
jQuery(".scroll, .mp_topmenu a:not(.external)").click(function(event){
event.preventDefault();
try{
jQuery('html,body').animate({scrollTop:jQuery(this.hash).offset().top}, 500);
}catch(e){
jQuery('html,body').animate({scrollTop:0}, 500);
}
});
Then use " external" for "Link CSS Style" in menu item settings when target link place is not on same page.
Open:
templates/hot_food_spirit/js/hot_food_spirit.js
replace:
jQuery(".scroll, .mp_topmenu a").click(function(event){
event.preventDefault();
jQuery('html,body').animate({scrollTop:jQuery(this.hash).offset().top}, 500);
});
with:
jQuery(".scroll, .mp_topmenu a:not(.external)").click(function(event){
event.preventDefault();
try{
jQuery('html,body').animate({scrollTop:jQuery(this.hash).offset().top}, 500);
}catch(e){
jQuery('html,body').animate({scrollTop:0}, 500);
}
});
Then use " external" for "Link CSS Style" in menu item settings when target link place is not on same page.
Please Log in to join the conversation.
-
dey
Inactive member -
Topic Author
- New Member
-
Less
More
- Thank you received: 0
12 years 1 week ago #28659
by dey
Replied by dey on topic how to remove the alien links
hat's what I have in this file, there is nothing I have not found a suspicious
jQuery(document).ready(function(){
jQuery(".scroll, .mp_top2 a, .mp_top3 a").click(function(event){
event.preventDefault();
jQuery('html,body').animate({scrollTop:jQuery(this.hash).offset().top}, 500);
});
var bigRotatorHeight = jQuery("#big_rotator img").innerHeight();
jQuery(".mp_header1 .caroufredsel_wrapper").css('height',bigRotatorHeight);
jQuery(window).resize(function() {
var bigRotatorHeight = jQuery("#big_rotator img").innerHeight();
jQuery(".mp_header1 .caroufredsel_wrapper").css('height',bigRotatorHeight);
});
});
jQuery(document).ready(function(){
jQuery(".scroll, .mp_top2 a, .mp_top3 a").click(function(event){
event.preventDefault();
jQuery('html,body').animate({scrollTop:jQuery(this.hash).offset().top}, 500);
});
var bigRotatorHeight = jQuery("#big_rotator img").innerHeight();
jQuery(".mp_header1 .caroufredsel_wrapper").css('height',bigRotatorHeight);
jQuery(window).resize(function() {
var bigRotatorHeight = jQuery("#big_rotator img").innerHeight();
jQuery(".mp_header1 .caroufredsel_wrapper").css('height',bigRotatorHeight);
});
});
Please Log in to join the conversation.
-
dey
Inactive member -
Topic Author
- New Member
-
Less
More
- Thank you received: 0
12 years 1 week ago #28660
by dey
Replied by dey on topic how to remove the alien links
On this page i havt
www.retrogrill.biz/fotogalereya/fotodishes
I have a this link <div id="leo-lp"><a href=" koketka.by/recepti/zakuski " target="_blank" title="Рецепты закусок с фото">Рецепты закусок с фото
</div> and <div id="leo-lp"><a href=" template-joomla.ru/shablony-joomla-3-0 " target="_blank" title="Joomla 3.0 шаблоны">Joomla 3.0 шаблоны
<a href=" www.21.by/currency.html " target="_blank" title="Курсы валют в Беларуси">Курсы валют в Беларуси
</div></div>
Please tell me how I can find and remove them?
www.retrogrill.biz/fotogalereya/fotodishes
I have a this link <div id="leo-lp"><a href=" koketka.by/recepti/zakuski " target="_blank" title="Рецепты закусок с фото">Рецепты закусок с фото
</div> and <div id="leo-lp"><a href=" template-joomla.ru/shablony-joomla-3-0 " target="_blank" title="Joomla 3.0 шаблоны">Joomla 3.0 шаблоны
<a href=" www.21.by/currency.html " target="_blank" title="Курсы валют в Беларуси">Курсы валют в Беларуси
</div></div>
Please tell me how I can find and remove them?
Please Log in to join the conversation.
Time to create page: 0.090 seconds