Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2. add_action( 'wfacp_after_checkout_page_found', 'create_user_account_by_default_checked' );
  3. function create_user_account_by_default_checked() {
  4. add_filter( 'woocommerce_create_account_default_checked', function ( $checked ) {
  5. return true;
  6. } );
  7. }
  8.  
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement