internetbrother Posted December 31, 2007 Share Posted December 31, 2007 Any body can help me put another instance of lang choosing folder at the top of page too? 0 Quote Link to comment Share on other sites More sharing options...
Si Posted December 31, 2007 Share Posted December 31, 2007 Any body can help me put another instance of lang choosing folder at the top of page too? Open up the footer.tpl in the template folder you are using and you will see this: <div align="right">{if $langchange}{$setlanguage}{/if}</div> Copy that and paste it into the header.tpl where you want it to appear. Si 0 Quote Link to comment Share on other sites More sharing options...
Brett Posted December 31, 2007 Share Posted December 31, 2007 Although be cautious. If you do this it will break the order form. You will need to go to the forwardpage.tpl and change <SCRIPT LANGUAGE="JavaScript"> setTimeout ( "autoForward()" , 5000 ); function autoForward() { document.forms[0].submit() } </SCRIPT> to this <SCRIPT LANGUAGE="JavaScript"> setTimeout ( "autoForward()" , 5000 ); function autoForward() { document.forms[1].submit() } </SCRIPT> What happens is if you have something like authorize.net or quantum gateway, it sends the data in a form. What the above code does is select the appropriate form to send the data from. If you do not change this it forwards the wrong data form and will not allow any of your orders to be placed! Just ask if you need anything else! 0 Quote Link to comment Share on other sites More sharing options...
internetbrother Posted December 31, 2007 Author Share Posted December 31, 2007 in vbulletin all languages have an ID and all you need is to use that link for the whole site show in that language. Is there any trick here? Also what if I want to change the folder of the language or movie to other place what corresponding file should I edit to point to right folder? 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.