Advertisement
wpgenie

WooCommerce redirect to previous page on sign up

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