-
AuthorPosts
-
June 4, 2016 at 8:04 am #642859
Hey there!
I’d like to learn how to change the link from “root.com” to “root.com/home/” that the logo linked to as well as the “home” text in the bread crumbs which is the .trial-begin class :)
Thanks in advance if anyone has insight on this!!
-
This topic was modified 9 years, 4 months ago by
AD.
June 5, 2016 at 2:37 am #643047Hey guys just giving this a little bump In case anyone can help with this type of thing :)
-
This reply was modified 9 years, 4 months ago by
AD.
June 5, 2016 at 2:59 am #643054Figured out how to change logo link from another thread…(custom functions plugin):
add_filter(‘avf_logo_link’,’av_change_logo_link’);
function av_change_logo_link($link)
{
$link = “http://kriesi.at”;
return $link;
}Still working on the breadcrumbs home link.
June 5, 2016 at 7:01 am #643079Hey guys, not sure if I’m no longer able to receive support or if this is just a tough issue that’s hard to solve on changing the Home link in the breadcrumbs, giving it another bump.
June 6, 2016 at 7:04 am #643307Hi,
Bumping has the opposite effect on our forum, so please try avoid doing that. Please send us a temporary admin login so that we can have a closer look. You can post the details in the Private Content section of your reply.
Regards,
RikardApril 19, 2019 at 1:51 pm #1092677Wordpress 5.1.1
NOT WORK in breadcrumbs , how can i change in breadcrumbs “Home” link
add_filter(‘avf_logo_link’, ‘avf_change_logo_link’);function avf_change_logo_link($link) {
$link = ‘https://newaddress’;
return $link;
}thank
April 22, 2019 at 1:42 am #1093179Hi,
Try adding this code to the end of your functions.php file in Appearance > Editor:function change_breadcrumb_home(){ ?> <script> (function($){ $(window).load(function(){ $(".breadcrumb-trail").find("a.trail-begin").attr("href", "https://www.google.com"); }); })(jQuery); </script> <?php } add_action('wp_footer', 'change_breadcrumb_home');Please replace the link in the code with yours.
Best regards,
Mike -
This topic was modified 9 years, 4 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.
