-
Kurierdienst
Unser Kurier liefert an die angegebene Adresse. Weitere Informationen werden Ihnen beim Bezahlen angezeigt.
4-6 Werktage
Gebühren auf den Bestellbetrag
/** * Add SliceWP Affiliate Dashboard link to WooCommerce My Account * only for users who are registered affiliates. */ add_action( 'init', function() { add_rewrite_endpoint( 'affiliate-dashboard', EP_ROOT | EP_PAGES ); } ); add_filter( 'woocommerce_account_menu_items', function( $items ) { if ( ! is_user_logged_in() ) { return $items; } if ( ! function_exists( 'slicewp_get_affiliate_by_user_id' ) ) { return $items; } $affiliate = slicewp_get_affiliate_by_user_id( get_current_user_id() ); if ( empty( $affiliate ) ) { return $items; } /** * Insert before logout. */ $logout = $items['customer-logout'] ?? null; if ( $logout ) { unset( $items['customer-logout'] ); } $items['affiliate-dashboard'] = __( 'Affiliate Dashboard', 'lyonbars' ); if ( $logout ) { $items['customer-logout'] = $logout; } return $items; } ); add_action( 'woocommerce_account_affiliate-dashboard_endpoint', function() { if ( ! is_user_logged_in() ) { echo '
Please log in to access your affiliate dashboard.
'; return; } if ( ! function_exists( 'slicewp_get_affiliate_by_user_id' ) ) { echo 'The affiliate dashboard is currently unavailable.
'; return; } $affiliate = slicewp_get_affiliate_by_user_id( get_current_user_id() ); if ( empty( $affiliate ) ) { echo 'You are not registered as an affiliate partner yet.
'; echo 'Apply for the Affiliate Program
'; return; } echo 'Access your referral links, visits, referrals, commissions and payout information in your lyonbars.gold Affiliate Dashboard.
'; echo ''; } );Noch kein Konto?
Konto erstellen
Rezensionen
Filter löschenEs gibt noch keine Rezensionen.