Skip to content

Instantly share code, notes, and snippets.

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 robertdevore/bc1a1abaca7135a1a08b701f93596139 to your computer and use it in GitHub Desktop.
Save robertdevore/bc1a1abaca7135a1a08b701f93596139 to your computer and use it in GitHub Desktop.
<?php
/**
* Change redirect URL for driver login
*
* @url https://wordpress.org/plugins/delivery-drivers-for-woocommerce
* @return string
*/
function acme_login_redirect( $link ) {
// Change the value to your full my-account URL (https://etc)
$link = 'YOUR_URL_HERE';
return $link;
}
add_filter( 'ddwc_driver_dashboard_login_redirect', 'acme_login_redirect' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment