Netyco Posted November 18, 2020 Share Posted November 18, 2020 (edited) Hello, I need disable the button Subscribe to newsletters in the employers options, its is possible? i have the last version of prestashop (1.7.6) thanks Edited November 18, 2020 by Netyco (see edit history) Link to comment Share on other sites More sharing options...
Netyco Posted November 19, 2020 Author Share Posted November 19, 2020 Hi, this is my Temporal solution: I edit thefile: /src/PrestaShopBundle/Resources/views/Admin/Configure/AdvancedParameters/Employee/Blocks/form.html.twig at the end of the file I put this code: <script> $( "#employee_optin_0" ).prop( "checked", true); $( "#employee_optin_1" ).prop( "checked", false); $('label[for="employee_optin"]').css('visibility', 'hidden'); $( ".ps-switch" ).css('visibility', 'hidden'); </script> I'm still looking for how to edit those options anyway. If anyone knows welcome Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now