So I am trying to figure out where the Home button is located in the submenu. I need to redirect it to point to member.php since I don't want to have a home page for members.
Is there a DB change I can make and where would that menu be located? lol

Thanks Ted
What's next to fix D8 issues? D9? (= |
Hello Ted,
If I understtod correctly, you can resolve this and change the URL of any menu item from the Administator page in Builders -> Navigation Menu.
You can there select the item you want to change and update the URL field.
Regards,
kazatzo
http://www.boonex.com/market/posts/kazatzo |
Are you referring to the actual submenu, or the breadcrumbs bar? BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
I am referring to the bread crumbs bar. I am familiar enough with the menu bar. I need to change the blue menu in the image i provided. The Home next to Dashboard. I need to point that to Member.php
regards Ted
What's next to fix D8 issues? D9? (= |
/templates/base/scripts/BxBaseMenu.php:851
change
function genBreadcrumb($aPath = array()) { $sRootItem = '<a href="' . $this->sSiteUrl . '">' . _t('_Home') . '</a>';
to
function genBreadcrumb($aPath = array()) { $sRootItem = '<a href="' . $this->sSiteUrl . 'member.php">' . _t('_Home') . '</a>';
You need to place "member.php" between the single and double quotes at the end.
BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
Nathan...
I appreciate the answer back so quickly. I made the suggested change that you provided and the template won''t load at all with that change. By won't load I mean won't go to the site. Just shows the .com name.
I tried coping and pasting the change and I tried manually entering in the member.php.
Makes sense that would be the place to change it. Maybe it needs something else?
What's next to fix D8 issues? D9? (= |
It's possible you didn't enter the code correctly. Can you post those two lines from your file here? BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |
This is just the default as of now again...
function genBreadcrumb($aPath = array()) {
$sRootItem = '<a href="' . $this->sSiteUrl . '">' . _t('_Home') . '</a>';
And this is what I enter in to make the site not load
function genBreadcrumb($aPath = array()) {
$sRootItem = '<a href="' . $this->sSiteUrl . 'member.php">' . _t('_Home') . '</a>';
What's next to fix D8 issues? D9? (= |
Please turn display_errors in PHP on and post the error that appears on the page. BoonEx Certified Host: Zarconia.net - Fully Supported Shared and Dedicated for Dolphin |