3. The "user-form.tpl" that is used to registration from, uses some language-specific words like Mr,Ms,Dr etc. I created the appropriate language translation for my country but it does not seems to work. Where to look ?
> for the question 3
>
> I found that the responsible code is inside
> "include/smarty/campsite_plugins/block.user_form.php" at line 55
>
> $p_params['submit_button'] = 'Submit';
>
> I added at the begining the code
>
> require_once($GLOBALS['g_campsiteDir']."/classes/Language.php ");
> camp_load_translation_strings("globals");
> camp_load_translation_strings("users");
>
> and changed the code at line 55 with
>
> $p_params['submit_button'] = getGS('Submit');
>
> but it does not seem to work.
>
> Any help here ?
>
>
>
If just checked http://campsite-demo.sourcefabric.org which runs latest Campsite (3.4.3, same as you) and the icon is there and works fine, also I didn't get any alert by using the "Insert/Edit Link" plugin, it works fine. I also checked in a couple local installations and everything is fine, so it looks like a specific issue related to your platform/installation. Can you provide us more details about it please?
I suspect that the distributed tar file that someone downloads from sourceforge is somewhat different from your current project files that someone can see in this demo
I have also some artifacts with the plugins. I had the same problems with the previous version 3.4.2. I dont know, if it matters, but everytime I use a clean installation using the demo (not a blank template).
Anyway, can I have access to the files at the current project to compare with mine?
PS: I have made many changes to the engine files to correctly support my language. For example that statement
{{ set_language name="Greek" }}
did not correctly change the language in the front side section especially for system messages and forms. For example take a look from my notes :
I have made many fixes and traslations like above and I am afraid I can not follow your updates very easy since I have to update the code everytime by myself.