Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Thanks! I have been able to change the prompt in the login module to say "New User? - click here to Register".krileon wrote: Language string within your language files. Please see the below example.
IN: components/com_comprofiler/plugin/language/default_language/default_language.php
ON: Line 242Code:DEFINE('_UE_REGISTER','Register');
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Yeah, it's kind of a widely used string. No worries as you can edit the template directly and change the string for the registration page manually with the below.Only trouble is, it has changed the submit button at the bottom of the registration form to say the same thing, which looks a bit silly.
This could work, but I can't recall if the pre/post texts are generated inside the FORM element. If they are then you could quite easily supply a custom submit button.B.) You can also hide the default "Create account" link. Than you might add your own custom link in the pre-/post text areas. In those textareas, you can use any HTML and also your own language definitions!
Please Log in or Create an account to join the conversation.
Thanks! It worked, though I also had to change the same line of code on line 257.krileon wrote:
Yeah, it's kind of a widely used string. No worries as you can edit the template directly and change the string for the registration page manually with the below.Only trouble is, it has changed the submit button at the bottom of the registration form to say the same thing, which looks a bit silly.
IN: components/com_comprofiler/plugin/templates/default/default.php
ON: Line 295
FROM:TO:Code:<span class="cb_button_wrapper"><input type="submit" value="<?php echo $this->registerButton; ?>" class="button" /></span>Code:<span class="cb_button_wrapper"><input type="submit" value="Register" class="button" /></span>
Please Log in or Create an account to join the conversation.