rimpa

Untitled

Apr 4th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. function logi_remove_strength_meter() {
  2. if (wp_script_is('wc-password-strength-meter', 'done')) {
  3. ?>
  4. <script type="text/javascript">
  5. jQuery(function ($) {
  6.  
  7. function let_me_sell() {
  8. $('form.checkout input[type="submit"]').removeAttr('disabled');
  9. }
  10.  
  11. $( document.body )
  12. .on( 'keyup', 'form.checkout #account_password', let_me_sell )
  13. .on( 'change', 'form.checkout #createaccount', let_me_sell );
  14. });
  15. </script>
  16. <?php
  17. }
  18. }
  19.  
  20. add_action('wp_footer', 'logi_remove_strength_meter', 99);
Add Comment
Please, Sign In to add comment