wpgenie

WooCommerce redirect to previous page

Jun 13th, 2018 (edited)
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_action('woocommerce_login_form_end', 'custom_add_redirect_previous_page' );
  2. function custom_add_redirect_previous_page(){
  3.     if( isset( $_SERVER["HTTP_REFERER"] ) ){
  4.                     echo '<input type="hidden" name="redirect" value="' . $_SERVER["HTTP_REFERER"] . '" >';
  5.     }
  6. }
Add Comment
Please, Sign In to add comment