wrong path vbadvanced probleme link changed

brahimbb

New Member
hi ,

i've a probleme with frunky fresh template


whene i enter to the forum of my site it's ok the links below works fine

siteks5.jpg


but whene return to the home page itdesnt' work

site2ux9.jpg


i mean the links are changed ex www.xxx.com/vb/calender.php -----forum
www.xxx.com/calender.php---------Home



so i want both links be the same www.xxx.com/vb/calender.php like the forum

i'm using vbadvanced
vbulletin 3.7.3
funkyfresh template

plz help me ::::::
 
This will give you a link to the forums on vBa pages and a link to vBa on the forum pages.

Find in your navbar template, for some skins this may be in the header template:
Code:
<!--<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>-->
Replace with:
Code:
<td class="vbmenu_control"><if condition="THIS_SCRIPT == 'adv_index'"><a href="$vboptions[bburl]?$session[sessionurl]"> Forums <else /> <a href="$vboptions[homeurl]?$session[sessionurl]"> Home </if></a></td>
 
Thanks a lot but i didn't find <!--<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>-->

could you explain more plz
 
brahimbb said:
Thanks a lot but i didn't find <!--<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>-->

could you explain more plz

oops, maybe remove the <!-- and -->

Also, it may help to post your header template so we get a better idea of what we're working with.
 
vbadvanced uses a technique they call "replacements". Basically it adds the correct path information to the URL so you don't get what you are seeing. I think they have three templates that are affected by this and you need to make sure that the "replacement" file names are in the correct section for the style you are using, some use header, some use navbar. Check the vbadvanced options section to make sure your files are copied to the correct section. Go here and you will see what I am saying:

Admin CP => vBa CMPS => Default Settings => vBadvanced Global Options => Header Replacements

BTW, funky fresh should be using the header template for the links.

Check also that your path is correct in you vbulletin config file.
 
bluescorpion said:
vbadvanced uses a technique they call "replacements". Basically it adds the correct path information to the URL so you don't get what you are seeing. I think they have three templates that are affected by this and you need to make sure that the "replacement" file names are in the correct section for the style you are using, some use header, some use navbar. Check the vbadvanced options section to make sure your files are copied to the correct section. Go here and you will see what I am saying:

Admin CP => vBa CMPS => Default Settings => vBadvanced Global Options => Header Replacements

BTW, funky fresh should be using the header template for the links.

Check also that your path is correct in you vbulletin config file.



you right header replacements is empty and i don't kow how i add the correct path
 
Back
Top