Creating a Page
Using Jamroom
brian:
1) copy the skins/active_skin/index.tpl to "live.tpl" and modify it to suit your needs. You will want to leave the includes in for the header/footer.
2) Meta Tag manager will work for it
3) You can have the languages in the template - i.e.
{if $_user.user_language == 'en-US'}
... show your english content ...
{elseif $_user.user_language == 'es-ES'}
... show spanish ...
{* add more elseif to suit your needs *}
{/if}
4) No - you will have to do something custom for that
5) you really can't do this easily - not without making "live" a module. Sorry!
Hi Brian,
Thanks for your reply.
1) Ok
2) Ok
3) Instead of the code you posted (the if statement), what about if I create some language strings and use the {JrCore_lang} fonction? Isn't it going to work?
I am asking because I have 4 languages on the site. Using the "if statement" I may end up having a very long and heavy website page since the text I am planning to put on that page is too long and contains images. Isn't it going to increase the page weight? Please advise.
4) Any clue on the custom code that can be used to translate the meta tag?
Can the "if statement" handle it?
e.g.:
{if $_user.user_language == 'en-US'}
Meta tags in english here
{elseif $_user.user_language == 'es-ES'}
Meta tags in spanish here
{elseif $_user.user_language == 'fr-FR'}
Meta tags in french here
{/if}
5) Well, How to make a page a module? Will it still act like a page?
Thanks