Advertisement
simkoG

WC redirect

Sep 19th, 2023
932
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. function acme_login_redirect( $redirect, $user ) {
  4.     if ( wc_user_has_role( $user, 'customer' ) ) {
  5.         $redirect = wc_get_page_permalink( 'shop' );
  6.     }
  7.    
  8.     return $redirect;
  9. }
  10.  
  11. add_filter( "woocommerce_login_redirect", "acme_login_redirect", 10, 2 );
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement