Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #229035

    Hi , on below page, breadcrumbs “home’ link is pointing to test2.akritiv.com, i want to change it to http://test2.akritiv.com/home

    http://test2.akritiv.com/about/leadership/

    can you let me know what should we do to change it ?

    Thanks
    Brijesh

    #229442

    Hi,

    Open framework/php/class-breadcrumb.php and look for line 209:

    $trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';
    

    Replace it by this:

    $trail[] = '<a href="http://test2.akritiv.com/about/leadership/" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home" class="trail-begin">' . $show_home . '</a>';
    

    Regards,
    Josue

    #229496

    This is working well

    Thanks for your help.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘breadcrumbs change’ is closed to new replies.