Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author eventualo

    (@eventualo)

    A quick way could be via css:

    p.alo_easymail_reg_optin { display: none }

    Thread Starter Solanum_CH

    (@solanum_ch)

    Thanks for your reply.

    I just tried the CSS code. Unfortunately this did not work. The subscription is still visible at the registration form.

    Do you have any other ideas?

    Plugin Author eventualo

    (@eventualo)

    A css rule should make the job. Can you provide the site url?

    Thread Starter Solanum_CH

    (@solanum_ch)

    The site url is
    http://www.corneliusfischer.ch

    I also thought that the CSS code should work. Tried to add the code to the themes custom CSS without any change. Also I added it directly to the theme CSS file. The registration form stays where it is. 🙁

    Plugin Author eventualo

    (@eventualo)

    The following rules shoul hide all html by plugin:

    p.alo_easymail_reg_optin { display: none !important }
    p.alo_easymail_reg_list_msg { display: none !important }
    p.alo_easymail_reg_list { display: none !important }

    I hope it helps.

    Thread Starter Solanum_CH

    (@solanum_ch)

    I just added your CSS to the theme options custom CSS. Subscription form still visible.
    Then I tried to add the CSS right into the theme CSS file. Subscription also still visible.

    Am I doing something wrong? Should the code be added somewhere else?

    Plugin Author eventualo

    (@eventualo)

    Sorry, I understand…
    The theme css is not loaded on login screen.
    You have to add the following code inside your theme functions.php:

    function my_custom_login_style() {
    	echo '<style type="text/css">
    		p.alo_easymail_reg_optin { display: none !important }
    		p.alo_easymail_reg_list_msg { display: none !important }
    		p.alo_easymail_reg_list { display: none !important }
    	</style>';
    }
    add_action('login_head', 'my_custom_login_style');

    Let us now if it works.

    Thread Starter Solanum_CH

    (@solanum_ch)

    hurray! That worked!

    Thanks for your help !!

    Thread Starter Solanum_CH

    (@solanum_ch)

    Hi there

    I just found out that newly registered users are now automatically added to my mailing list.

    How can I hide the newsletter subscription from the registration form and without newly registered users automatically added to my mailing list?

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Hide newsletter subscription from registration form’ is closed to new replies.