Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* WC Vendors – Redirect Vendors to Vendor Dashboard on Login using KLEO LOGIN POP-UP */
- add_filter('kleo_modal_login_redirect', 'wc_dashboard_login_redirect', 10, 2);
- function wc_dashboard_login_redirect( $redirect_to, $user ) {
- // WCV Pro Dashboard
- if (class_exists('WCV_Vendors') && class_exists('WCVendors_Pro') && WCV_Vendors::is_vendor( $user->id ) ) {
- $redirect_to = get_permalink(WCVendors_Pro::get_option( 'dashboard_page_id' ));
- }
- return $redirect_to;
- }
Advertisement
Add Comment
Please, Sign In to add comment