Setting up different hop targets as a vendor...

Discussion in 'ClickBank' started by marcusio, Mar 10, 2010.

  1. #1
    Hey guys,

    I have seen this mentioned here before but have not seen it mentioned about how to do it if you want your own products to do that. I am soon to be releasing a stream of products whice are all linked together so I want them all on the same account but want my affiliates to be able to send traffic to any page they want.

    If i have not made myself clear I want to be able to do exactly what this guy does

    http://www.turbulencetraining.com/affiliates/link-generator.php

    does anyone know the coding behind this so I can get my affiliates to send their traffic to a number of different pages on my site
     
    marcusio, Mar 10, 2010 IP
  2. lspublish1

    lspublish1 Peon

    Messages:
    66
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    It's not difficult, just setup page links in your clickbank product account.
     
    lspublish1, Mar 11, 2010 IP
  3. marcusio

    marcusio Peon

    Messages:
    607
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Where? I am talking about different hoplinks
     
    marcusio, Mar 11, 2010 IP
  4. TigerPublishing

    TigerPublishing Member

    Messages:
    451
    Likes Received:
    13
    Best Answers:
    0
    Trophy Points:
    35
    #4
    Your affiliates need to pass in a parameter to the hoplink, then your pitch page (the one you set in CB) can read that parameter and redirect as appropriate. For example (PHP code)...
    
    <?php
    
    switch ($_GET["product"]) {
      case "product_1":
        header("Location: /product_1.html");
        exit;
        break;
      case "product_2":
        header("Location: /product2/home.html");
        exit;
        break;
    }
    
    ?>
    <html>
      ... your main product page ...
    
    Code (markup):
     
    TigerPublishing, Mar 11, 2010 IP
  5. lspublish1

    lspublish1 Peon

    Messages:
    66
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    You can only have one "top level" hoplink per account.

    AFF.YOURACCOUNTNAME.hop.clickbank.net.

    if you have multiple products, then the person will be sent to a page where they can choose which product they want.

    otherwise, you have do a ?page=name system like the site you named.

    hth
     
    lspublish1, Mar 11, 2010 IP
  6. marcusio

    marcusio Peon

    Messages:
    607
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Cheers tiger that is exactly what I was looking for
     
    marcusio, Mar 11, 2010 IP