Skip to content

Instantly share code, notes, and snippets.

@jjmontalban
Last active February 3, 2023 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jjmontalban/4091529104ceef5e80a832f00a0ddf00 to your computer and use it in GitHub Desktop.
Save jjmontalban/4091529104ceef5e80a832f00a0ddf00 to your computer and use it in GitHub Desktop.
Redirigir tras login en woocommerce
<?php
/* Redireccion tras login */
add_filter( 'woocommerce_login_redirect', 'custom_redirection_login' );
function custom_redirection_login( $redirection_url )
{
$redirection_url = "https://floramarket.es/tienda/";
return $redirection_url;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment