Okay
  Public Ticket #4532368
Wholesale
Open

Comments

  •  1
    Saben started the conversation

    On the agent dashboard under affiliate links curious if there is a way to have a B2B Wholesale affiliate link instead of the registration B2C link?

    I know the B2B wholesale form has a field for sales agent ID but would be nice to have that link agents can easily copy and paste to send to wholesale accounts they are trying to sell. 

  •  2,624
    WebWizards replied

    Hi Saben,

    Thanks for reaching out! Yes, you can change that link to a custom one.

    For your site, this code snippet should replace the default registration link with your B2B wholesale page instead:

    add_filter('salesking_registration_page_link', function($link){
    $agent_id = get_user_meta(get_current_user_id(), 'salesking_agentid', true);
    $link = 'https://antidoteextractlabs.com/wholesale-signup/?regid='.$agent_id;
    return $link;
    }, 10, 1);

    You can add this to your theme's functions.php or any code snippets plugin. This will make the affiliate link in the agent dashboard point to your wholesale signup page with their agent ID attached.

    Let me know if you have any questions,

    Kind regards,
    Stefan