[Plugin: Breadcrumb NavXT] Home url with WPML plugin not working
-
Fix available:
” 1. Open your breadcrumb_navxt_class.php file, and find this code:
//Figure out the anchor for home page
$breadcrumb->set_anchor($this->opt[‘home_anchor’], get_option(‘home’));then replace with this following code:
//Figure out the anchor for home page
$breadcrumb->set_anchor($this->opt[‘home_anchor’], get_bloginfo(‘url’));2. Still in the same file, find again this code:
//Deal with the anchor
$breadcrumb->set_anchor($this->opt[‘home_anchor’], get_option(‘home’));then replace with this following code:
//Deal with the anchor
$breadcrumb->set_anchor($this->opt[‘home_anchor’], get_bloginfo(‘url’));Maybe this could be put into the plugin itself?
https://www.ads-software.com/extend/plugins/breadcrumb-navxt/
- The topic ‘[Plugin: Breadcrumb NavXT] Home url with WPML plugin not working’ is closed to new replies.