rdusnr

Untitled

Jun 26th, 2017
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. /* WC Vendors – Redirect Vendors to Vendor Dashboard on Login using KLEO LOGIN POP-UP */
  2. add_filter('kleo_modal_login_redirect', 'wc_dashboard_login_redirect', 10, 2);
  3. function wc_dashboard_login_redirect( $redirect_to, $user ) {
  4. // WCV Pro Dashboard
  5. if (class_exists('WCV_Vendors') && class_exists('WCVendors_Pro') && WCV_Vendors::is_vendor( $user->id ) ) {
  6. $redirect_to = get_permalink(WCVendors_Pro::get_option( 'dashboard_page_id' ));
  7. }
  8.  
  9. return $redirect_to;
  10.  
  11. }
Advertisement
Add Comment
Please, Sign In to add comment