Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hamidrezayazdani/7e7c431b62111d76c899cd88d032e67a to your computer and use it in GitHub Desktop.
Save hamidrezayazdani/7e7c431b62111d76c899cd88d032e67a to your computer and use it in GitHub Desktop.
انتقال کاربر ووکامرس به صفحه قبلی پس از ورود موفق به حساب کاربری
<?php
/**
* Redirect to previous location after login.
*/
function ywp_login_redirect( $redirect, $user ) {
return $_SERVER['HTTP_REFERER'];
}
add_filter( 'woocommerce_login_redirect', 'ywp_login_redirect', 1100, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment