Gents,
I wonder tu setup the Newsletter checked by default when a user wants to register. I found some solutions for 1.9 version... but I am working on Magento 2 now
¿Do you have any idea of how to do that?
Many thanks in advance
Federico
Solved! Go to Solution.
You can do it by an extension only.
How is the «Sign Up for Newsletter» checkbox implemented on the customer registration form? https://mage2.pro/t/1051
As you can see, you can write a plugin to the \Magento\Customer\Block\Form\Register class and to set the is_subscribed form field.
You can do it by an extension only.
How is the «Sign Up for Newsletter» checkbox implemented on the customer registration form? https://mage2.pro/t/1051
As you can see, you can write a plugin to the \Magento\Customer\Block\Form\Register class and to set the is_subscribed form field.
Dmitry_Fedyuk - Would you be able to tell how to write those kind of extensions?