PDA

View Full Version : Forum Breadcrumbs Issue


Yonatan
04-14-2010, 04:30 PM
Hello!

when I set the index as default script(instead of forum) in:
Settings -> Forums Home Page Options -> Script Name for Forum Home Page

http://img339.imageshack.us/img339/1...rumbsissue.png (http://img339.imageshack.us/img339/1627/breadcrumbsissue.png)

the Forum link in the Breadcrumbs navigate to index.php instead of forum.php.

That's really bad for SEO(when it's writing "Forum" but linking to the "Index") - how can I change this?

Thanks!

Yonatan https://vborg.vbsupport.ru/

Lynne
04-15-2010, 01:42 AM
Why not just write a plugin like:
hook_location: navbits
if ($nav_url == 'index.php') $nav_url = 'forum.php';

Yonatan
04-15-2010, 10:39 AM
Why not just write a plugin like:
hook_location: navbits
if ($nav_url == 'index.php') $nav_url = 'forum.php';
Thanks a lot!

Now I understand for what you meant about creating hook :)

Thanks again ;)