Couple of questions regarding building my web site with CMSMS
Couple of questions regarding building my web site with CMSMS
I am in a process of redesigning my home web site. I have decided to use CMSMS because it gives me easier way of managing templates, blog, registration, etc. So far I was able to install few modules, configure the registration and setup "contact me" page. It is all working fine but I still have some (I hope simple) questions:
1. Here is a silly one - How do I link to a page when I create new contents in CMSMS? Basically, I have page with pictures (one page for each of my trips) and I have no idea how do I put links to these pages on another one.
2. My web site is in Polish and the registration module still has some text in English (http://www.mielko.com/index.php?page=hucio). How do I change that? All I see in the template are the tags in {} but no text.
3. The contact me page (http://www.mielko.com/index.php?page=kontakt) has bigger font that the registration page. Again, where do I change it? I am guessing that this would need to be changed in the CSS part.
I guess that's all for now. Any help is appreciated.
Thanks.
1. Here is a silly one - How do I link to a page when I create new contents in CMSMS? Basically, I have page with pictures (one page for each of my trips) and I have no idea how do I put links to these pages on another one.
2. My web site is in Polish and the registration module still has some text in English (http://www.mielko.com/index.php?page=hucio). How do I change that? All I see in the template are the tags in {} but no text.
3. The contact me page (http://www.mielko.com/index.php?page=kontakt) has bigger font that the registration page. Again, where do I change it? I am guessing that this would need to be changed in the CSS part.
I guess that's all for now. Any help is appreciated.
Thanks.
Re: Couple of questions regarding building my web site with CMSMS
Re: 1 - if you're using TinyMCE as your editor, highlight the text you want to link, then click on the little palm tree link icon in the editor toolbar. It will bring up the list of pages, where you can select the one to link to.
Re: 2 - you'll have to edit/create a polish language file in the lang/ext directory of the module to add/change the text.
Re: 3 - are you using different templates for the pages, or the same one?
Nullig
Re: 2 - you'll have to edit/create a polish language file in the lang/ext directory of the module to add/change the text.
Re: 3 - are you using different templates for the pages, or the same one?
Nullig
Re: Couple of questions regarding building my web site with CMSMS
1. Got it.
2. I have downloaded the file for Polish language but I am unable to find the text "Forgot login details" that appears on the page. Is it possible that it is in one of the .php files?
3. I think so. I have registration page (listed under Content/Pages) that has the self registration tag:
This registration page has the same template as every other page.
Thanks.
2. I have downloaded the file for Polish language but I am unable to find the text "Forgot login details" that appears on the page. Is it possible that it is in one of the .php files?
3. I think so. I have registration page (listed under Content/Pages) that has the self registration tag:
Code: Select all
{cms_module module=SelfRegistration group=Users lang=pl_PL}
Thanks.
Re: Couple of questions regarding building my web site with CMSMS
That message comes from the FrontEndUsers module. Have you specified polish as the language for it?
Nullig
Nullig
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: Couple of questions regarding building my web site with CMSMS
the translation for polish is probably incomplete.
You'd be best served by joining the translation team, and updating the translation in the translation center, and then downloading the new translation.
You'd be best served by joining the translation team, and updating the translation in the translation center, and then downloading the new translation.
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Couple of questions regarding building my web site with CMSMS
Here is what I have on the page that is supposed to be protected by Front End Users module:
So I assume that the language is set for the FEU module.
Code: Select all
{cms_module module=FrontEndUsers lang='pl_PL'}
Re: Couple of questions regarding building my web site with CMSMS
The translation for that particular item is in the polish file.
Nullig
Nullig
Re: Couple of questions regarding building my web site with CMSMS
I can do that since Polish is my native language. I am just unsure what translation needs to be finished, the Front End Users module or the Self Registration Module.the translation for polish is probably incomplete.
You'd be best served by joining the translation team, and updating the translation in the translation center, and then downloading the new translation.
Thanks.
Re: Couple of questions regarding building my web site with CMSMS
Can you post the entire code for the page you have the selfregistration on?
Nullig
Nullig
Re: Couple of questions regarding building my web site with CMSMS
Here is the code for the page that supposed to be protected by username/password:
Here is the code for the registration page:
That's all. It is under construction now so there are not much going on there. The 'strona w trakcie konstrukcj' text just says "site under construction" in polish.
Code: Select all
{cms_module module=FrontEndUsers lang='pl_PL'} {cms_module module=CustomContent} {if $customcontent_loggedin} strona w trakcie konstrukcji {else}{/if}
Code: Select all
{cms_module module=SelfRegistration group=Users lang=pl_PL}
Re: Couple of questions regarding building my web site with CMSMS
That particular message:
Forgot Your Login Details?
appears to come from the FrontEndUsers module:
$lang['title_lostusername'] = 'Forgot Your Login Details?';
and it is already translated in the polish language file as:
$lang['title_lostusername'] = 'Zapomniany login?';
Nullig
Forgot Your Login Details?
appears to come from the FrontEndUsers module:
$lang['title_lostusername'] = 'Forgot Your Login Details?';
and it is already translated in the polish language file as:
$lang['title_lostusername'] = 'Zapomniany login?';
Nullig
Re: Couple of questions regarding building my web site with CMSMS
You could try adding:
{cms_module module=FrontEndUsers lang='pl_PL'}
on the same page as the:
{cms_module module=SelfRegistration group=Users lang=pl_PL}
I'd put the frontendusers tag before the selfregistration tag.
Nullig
{cms_module module=FrontEndUsers lang='pl_PL'}
on the same page as the:
{cms_module module=SelfRegistration group=Users lang=pl_PL}
I'd put the frontendusers tag before the selfregistration tag.
Nullig
Re: Couple of questions regarding building my web site with CMSMS
Nullig, I have followed your advise but that did not fix the message. Now I have the following code on the registration page:
Where did you see the translated 'title_lostusername' tag? It is possible that I just do not have the latest version.
Code: Select all
{cms_module module=FrontEndUsers lang='pl_PL'}{cms_module module=SelfRegistration group=Users lang=pl_PL}
Re: Couple of questions regarding building my web site with CMSMS
It is in the lang/ext directory of the FrontEndUsers module.
You could try just editing the en_US.php file in FrontEndUsers for that field, if you can't get it to work.
Do you have the default language for the front end selected as Polish, in Admin?
Nullig
You could try just editing the en_US.php file in FrontEndUsers for that field, if you can't get it to work.
Do you have the default language for the front end selected as Polish, in Admin?
Nullig
Re: Couple of questions regarding building my web site with CMSMS
I cannot edit the file. I can download it thru FTP but when I try to overwrite it I get error "permission denied". I can't even set new permission thru FTP and the CMSMS File Manager just lists 'uploads' folder. 
I do have Polish language set for the global site preferences.

I do have Polish language set for the global site preferences.