MyBB Community Forums
Change Board Language on Link/Picture click - Printable Version

+- MyBB Community Forums (https://community.mybb.com)
+-- Forum: Community Archive (https://community.mybb.com/forum-106.html)
+--- Forum: Archived Forums (https://community.mybb.com/forum-143.html)
+---- Forum: Archived Development and Support (https://community.mybb.com/forum-155.html)
+----- Forum: MyBB 1.6 (https://community.mybb.com/forum-138.html)
+------ Forum: 1.6 General Support (https://community.mybb.com/forum-127.html)
+------ Thread: Change Board Language on Link/Picture click (/thread-146061.html)



Change Board Language on Link/Picture click - uzurpatoru - 2013-09-29

As the titles says...
I don't want to use the dropdown menu in footer OR change language ability from userCP, but i want a Link/Picture in the footer for example, which on click will change the language.

I saw this post -> http://community.mybb.com/thread-61432.html but not working for me...

Thanx.


RE: Change Board Language on Link/Picture click - .m. - 2013-09-29

^ you have to add &my_post_key={$mybb->post_code} at the end of such URL (like below)

<a href="?language=romanian&fid={$mybb->input['fid']}&tid={$mybb->input['tid']}&pid={$mybb->input['pid']}&my_post_key={$mybb->post_code}">Romanian</a>

<a href="?language=english&fid={$mybb->input['fid']}&tid={$mybb->input['tid']}&pid={$mybb->input['pid']}&my_post_key={$mybb->post_code}">English</a>



RE: Change Board Language on Link/Picture click - uzurpatoru - 2013-09-29

Thank you very much!