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.
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
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:
Notice the two times it has
? Good. So change that to be the full URL of your dreams. Something like
for example.