Recent Topics

1 Mar 25, 2009 14:57    

My b2evolution Version: 2.x

Under b2evolution tool bar, The first is "Home" link,
how do i change the Home link direct to my blog index page?
it is current directing to other site.

:roll: :roll:

2 Mar 25, 2009 16:53

That points to your installation's $base_url, or more accurately a variable called "$home_url", so if you want it to point to something else you will have to edit /skins/_toolbar.inc.php around lines 99 & 104 (in v246). They currently should look something like this:

		<strong><?php
			echo '<a href="'.$home_url.'">b2evolution '.get_icon('dropdown').'</a>';
			// Note: if <strong></strong> is inside of the link, rollover fails in IE7
		?></strong>
    <ul>
			<?php
				echo '<li><a href="'.$home_url.'">'.T_('Home').'</a></li>';

Notice the two times it has

href="'.$home_url.'"

? Good. So change that to be the full URL of your dreams. Something like

href="http://yourdomain.tld/yourblogpath/yourfile.php"

for example.


Form is loading...