The confirmation checkbox does not appear on my registration form

If you have enabled the RSMail!-Joomla! integration and the confirmation checkbox, for your users to subscribe to your newsletter, does not appear in the registration form, then please make sure that the Integration is correctly configured in RSMail!. A common mistake is to set the "Enable plugin" option, from RSMail! >> Integrations >> RSMail Joomla Registration to No. If this is the case, please try setting the option to Yes.

If you are using a custom Joomla! registration form then some source code modifications will be required for the integration to work, as the RSMail! is set to function only with the standard, noncustomized, registration form. In this case, you will have to make some modifications to the source code of the component, namely to the \plugins\system\rsmail_joomla_registration.php file. Here you will have to change the following code lines:

$to_search = '<td>
        <input class="inputbox required validate-passverify" type="password" id="password2" name="password2" size="40" value="" /> *
      </td>
    </tr>';

to another unique syntax from the source code of the page of your registration form. The syntax will have to be added again in the content of the next variable in the file, namely:

$to_replace = '<td>
        <input class="inputbox required validate-passverify" type="password" id="password2" name="password2" size="40" value="" /> *
      </td>
    </tr>
    

This way the "Subscribe" button will be displayed correctly in the Joomla! registration form.

Was this article helpful?

Yes No
Sorry about that