Page 3 of 6 FirstFirst 12345 ... LastLast
Results 21 to 30 of 60
  1. #21
    Join Date
    Jun 2006
    Posts
    128
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    Quote Originally Posted by jroxonline View Post

    Level 1 Affiliate - 10% (if you set Level 3 payouts at 10%)

    Level 2 Affiliate - 20% (if you set Level 2 payouts at 20%)

    Level 3 Affiliate - 50% (if you set Level 1 payouts at 50%)

    Hopefully this answers your question.
    So, Can I use these affiliate levels independent of each other? Or do I just create different programs?

    Here's what I want to accomplish:

    Program 1 = Free Affiliate Program = 10% commission for any referrals

    Program 2 = $25 Annual Fee = 20% commission for any referrals

    Program 3 = $50 Annual Fee = 30% commission plus Gift Certificate for $20.00

    Then I would create an Afflilate Category in my zen cart and set the costs to purchase the ones with annual fees there. Once purchased they will be provided with a link to access the signup page and based on their subscription purchase I can set their program via admin when I approve it.

    Will this work? I'm not really interested in the tiers so much. I would rather have them have to pay an annual fee to obtain the higher commissions, and then have no tiers.

  2. #22
    Join Date
    Aug 2006
    Posts
    47
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    Quote Originally Posted by signs View Post
    So, Can I use these affiliate levels independent of each other? Or do I just create different programs?

    Here's what I want to accomplish:

    Program 1 = Free Affiliate Program = 10% commission for any referrals

    Program 2 = $25 Annual Fee = 20% commission for any referrals

    Program 3 = $50 Annual Fee = 30% commission plus Gift Certificate for $20.00

    Then I would create an Afflilate Category in my zen cart and set the costs to purchase the ones with annual fees there. Once purchased they will be provided with a link to access the signup page and based on their subscription purchase I can set their program via admin when I approve it.

    Will this work? I'm not really interested in the tiers so much. I would rather have them have to pay an annual fee to obtain the higher commissions, and then have no tiers.

    You can probably get this done, but you would have to create 3 different programs. When they pay, then you can change them to a new program. However, this can only be done manually (changing affiliate programs). Also, they will have to change their affiliate links, as the affiliate links are different for each program.

  3. #23
    Join Date
    Jun 2006
    Posts
    128
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    That will work perfectly then because I can just set it up for admin approval required and verify their purchase before setting their program. That will work out just the way I want it to. GREAT MOD!!! Thanks for your contribution. If it works out well I will upgrade.

  4. #24
    Join Date
    Nov 2003
    Posts
    111
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    Will the jrox code for zen-cart work in the check out success header file of 1.2x?

  5. #25
    Join Date
    Aug 2006
    Posts
    47
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    Quote Originally Posted by 13moons View Post
    Will the jrox code for zen-cart work in the check out success header file of 1.2x?
    The tpl_footer.php file provided with JAM will only work with 1.3+. If you need the code for 1.2x, you will need to manually edit the core files.

  6. #26
    Join Date
    Nov 2003
    Posts
    111
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    Thanks for getting back so quick. So here's my previous idev script that went into the checkout success header file (that worked fine until I had to move hosts and something went pooey in the whole idev program):

    $idev = $db->Execute("select * from " . TABLE_ORDERS_TOTAL . " where orders_id = '".(int)$orders->fields['orders_id']."' AND class = 'ot_subtotal'");
    $idev_zen_1 = (number_format($idev->fields['value'],2));
    $idev_zen_2 = $idev->fields['orders_id'];
    print "<script language=\"JavaScript\" type=\"text/javascript\"

    src=\"http://www.mysite.com/idevaffiliate/sale.php?idev_zen_1=$idev_zen_1&idev_zen_2=$idev_zen_2\"></script>";


    and here's the zen 1.3 script for jrox:

    if ((int)$orders_id > 0) {

    $JAM = $db->Execute("select class, value from " . TABLE_ORDERS_TOTAL . " where orders_id = '".(int)$orders_id."' AND class in

    ('ot_coupon', 'ot_subtotal', 'ot_group_pricing')");

    while (!$JAM->EOF) {

    switch ($JAM->fields['class']) {

    case 'ot_subtotal':

    $order_subtotal = $JAM->fields['value'];

    break;

    case 'ot_coupon':

    $coupon_amount = $JAM->fields['value'];

    break;

    case 'ot_group_pricing':

    $group_pricing_amount = $JAM->fields['value'];

    break;

    }

    $JAM->MoveNext();

    }

    $commissionable_order = ($order_subtotal - $coupon_amount - $group_pricing_amount);

    $commissionable_order = number_format($commissionable_order,2,'.',',');

    echo "<script language=\"JavaScript\" type=\"text/javascript\"

    src=\"http://www.mysite.com/affiliates/sale.php?amount=$commissionable_order&trans_id=$orders_id\"></script>


    I can almost figure how to convert it but I'm not knowledgeable enough to get it going right. Any takers!
    Thanks

  7. #27
    Join Date
    Aug 2006
    Posts
    47
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    Here you go:

    $jam1 = $db->Execute("select * from " . TABLE_ORDERS_TOTAL . " where orders_id = '".(int)$orders->fields['orders_id']."' AND class = 'ot_subtotal'");
    $jam_zen_1 = (number_format($jam1->fields['value'],2));
    $jam_zen_2 = $jam1->fields['orders_id'];
    print "<script language=\"JavaScript\" type=\"text/javascript\"

    src=\"http://www.mysite.com/affiliates/sale.php?amount=$jam_zen_1&trans_id=$jam_zen_2\"></script>";

    Just change the mysite.com/affiliates to point to your JAM install

  8. #28
    Join Date
    Nov 2003
    Posts
    111
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    jroxonline, Thank You! It went perfectly on the test run. Now to get all my idev affiliates over to jrox.
    So far jrox looks like a great program. And with this kind of response here at the zen-cart forums and the jrox forums too, I am really impressed.
    Thanks again

  9. #29
    Join Date
    May 2004
    Posts
    766
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    I have a question about the footer file.

    I just put the jrox code into my custom footer file. Should I now delete the footer file from the common folder in my template?

    Also I'm assuming since the file download from Jrox was written for v1.30+ that it is safe to remove the table tags in it which are no longer used in v1.37?

    thank you,

    betty

  10. #30
    Join Date
    Aug 2006
    Posts
    47
    Plugin Contributions
    0

    Default Re: Has anyone integrated jrox affiliate system with zencart?

    You should not have to delete any other file as the tpl_footer.php file will override your current one anyway.

    You can remove the table tags as those are not used.

 

 
Page 3 of 6 FirstFirst 12345 ... LastLast

Similar Threads

  1. Anyone has set up QPS (Qualified Processing Service) with Zencart?
    By Yolanda in forum Addon Payment Modules
    Replies: 0
    Last Post: 3 Nov 2009, 05:56 PM
  2. Has anyone successfully integrated Google Checkout with Super Orders?
    By bhuntsman in forum Addon Payment Modules
    Replies: 0
    Last Post: 30 Jul 2009, 01:30 PM
  3. Google Checkout with JROX Affiliate Manager
    By jsohler in forum Addon Payment Modules
    Replies: 9
    Last Post: 30 Oct 2008, 08:46 PM
  4. JROX Affiliate Program NOT recording Affiliate Sales
    By PhysiqueBoutique in forum General Questions
    Replies: 6
    Last Post: 17 Oct 2008, 10:34 AM
  5. has anyone integrated paypal pro?
    By infinite1 in forum Addon Payment Modules
    Replies: 3
    Last Post: 21 Nov 2006, 08:00 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR