Page 6 of 6 FirstFirst ... 456
Results 51 to 60 of 60
  1. #51
    Join Date
    Aug 2006
    Posts
    47
    Plugin Contributions
    0

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

    Hello,

    Instructions for integrating JAM with Zencart are here:

    http://jam.jrox.com/docs/index.php?article=111

  2. #52
    Join Date
    Jul 2006
    Posts
    135
    Plugin Contributions
    0

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

    Quote Originally Posted by jroxonline View Post
    Hello,

    Instructions for integrating JAM with Zencart are here:

    http://jam.jrox.com/docs/index.php?article=111

    Just wanted to say we've been using J-Rox since Nov 1st and we love it!

  3. #53
    Join Date
    Nov 2007
    Location
    oregon
    Posts
    70
    Plugin Contributions
    0

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

    has any one intergrated with cherry zen template? doesn't seem to work on mine.

  4. #54
    Join Date
    Mar 2004
    Posts
    16,042
    Plugin Contributions
    5

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

    you will need to add the jrox code to the checkout success page in the includes/templates/cherry_zen/templates folder
    Zen cart PCI compliant Hosting

  5. #55
    Join Date
    Nov 2007
    Location
    oregon
    Posts
    70
    Plugin Contributions
    0

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

    Quote Originally Posted by Merlinpa1969 View Post
    you will need to add the jrox code to the checkout success page in the includes/templates/cherry_zen/templates folder
    add the tpl_footer.php that was in jrox's intergration file to that directory or just add the code from that file that DrByte wrote and add it to tpl_checkout_success_default.php if just adding the code from DrByte where should it be added?

    <?php
    /**
    * Page Template
    *
    * Loaded automatically by index.php?main_page=checkout_success.<br />
    * Displays confirmation details after order has been successfully processed.
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_checkout_success_default.php 5407 2006-12-27 01:35:37Z drbyte $
    */
    ?>
    <div class="centerColumn" id="checkoutSuccess">

    <!--bof -gift certificate- send or spend box-->
    <?php
    // only show when there is a GV balance
    if ($customer_has_gv_balance ) {
    ?>
    <div id="sendSpendWrapper">
    <?php require($template->get_template_dir('tpl_modules_send_or_spend.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_send_or_spend.php'); ?>
    </div>
    <?php
    }
    ?>
    <!--eof -gift certificate- send or spend box-->

    <h1 id="checkoutSuccessHeading"><?php echo HEADING_TITLE; ?></h1>
    <div id="checkoutSuccessOrderNumber"><?php echo TEXT_YOUR_ORDER_NUMBER . $zv_orders_id; ?></div>

    <!-- bof Order Steps (tableless) -->
    <div id="order_steps">
    <div class="order_steps_text">
    <span class="order_steps_text2"><?php echo TEXT_ORDER_STEPS_1; ?></span><span class="order_steps_text3"><?php echo TEXT_ORDER_STEPS_2; ?></span><span class="order_steps_text4"><?php echo TEXT_ORDER_STEPS_3; ?></span><span id="active_step_text"><?php echo zen_image($template->get_template_dir(ORDER_STEPS_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . ORDER_STEPS_IMAGE, ORDER_STEPS_IMAGE_ALT); ?><br /><?php echo TEXT_ORDER_STEPS_4; ?></span>
    </div>
    <div class="order_steps_line_2">
    <span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span>
    </div>
    </div>
    <!-- eof Order Steps (tableless) -->

    <?php if (DEFINE_CHECKOUT_SUCCESS_STATUS >= 1 and DEFINE_CHECKOUT_SUCCESS_STATUS <= 2) { ?>
    <div id="checkoutSuccessMainContent" class="content">
    <?php
    /**
    * require the html_defined text for checkout success
    */
    require($define_page);
    ?>
    </div>
    <?php } ?>
    <!--bof logoff-->
    <div id="checkoutSuccessLogoff">
    <?php
    if (isset($_SESSION['customer_guest_id'])) {
    echo TEXT_CHECKOUT_LOGOFF_GUEST;
    } elseif (isset($_SESSION['customer_id'])) {
    echo TEXT_CHECKOUT_LOGOFF_CUSTOMER;
    }
    ?>
    <div class="buttonRow forward"><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo zen_image_button(BUTTON_IMAGE_LOG_OFF , BUTTON_LOG_OFF_ALT); ?></a></div>
    </div>
    <!--eof logoff-->
    <br class="clearBoth" />
    <!--bof -product notifications box-->
    <?php
    /**
    * The following creates a list of checkboxes for the customer to select if they wish to be included in product-notification
    * announcements related to products they've just purchased.
    **/
    if ($flag_show_products_notification == true) {
    ?>
    <fieldset id="csNotifications">
    <legend><?php echo TEXT_NOTIFY_PRODUCTS; ?></legend>
    <?php echo zen_draw_form('order', zen_href_link(FILENAME_CHECKOUT_SUCCESS, 'action=update', 'SSL')); ?>

    <?php foreach ($notificationsArray as $notifications) { ?>
    <?php echo zen_draw_checkbox_field('notify[]', $notifications['products_id'], true, 'id="notify-' . $notifications['counter'] . '"') ;?>
    <label class="checkboxLabel" for="<?php echo 'notify-' . $notifications['counter']; ?>"><?php echo $notifications['products_name']; ?></label>
    <br />
    <?php } ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_UPDATE, BUTTON_UPDATE_ALT); ?></div>
    </form>
    </fieldset>
    <?php
    }
    ?>
    <!--eof -product notifications box-->



    <!--bof -product downloads module-->
    <?php
    if (DOWNLOAD_ENABLED == 'true') require($template->get_template_dir('tpl_modules_downloads.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_downloads.php');
    ?>
    <!--eof -product downloads module-->

    <div id="checkoutSuccessOrderLink"><?php echo TEXT_SEE_ORDERS;?></div>

    <div id="checkoutSuccessContactLink"><?php echo TEXT_CONTACT_STORE_OWNER;?></div>

    <h3 id="checkoutSuccessThanks" class="centeredContent"><?php echo TEXT_THANKS_FOR_SHOPPING; ?></h3>
    </div>

    ##########################################
    ## START JAM INTEGRATION WITH ZEN CART ##
    ## ZC Integration code by DrByte 8/2006 ##
    ##########################################
    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.d-r-l.com.com/jv/sale.php?amount=$commissionable_order&trans_id=$orders_id\"></script></td></tr>

    </table>";
    }
    #######################################
    ## END JAM INTEGRATION WITH ZEN CART ##
    #######################################

  6. #56
    Join Date
    Nov 2007
    Location
    oregon
    Posts
    70
    Plugin Contributions
    0

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

    Just tried this and it didn't work


    <?php
    /**
    * Page Template
    *
    * Loaded automatically by index.php?main_page=checkout_success.<br />
    * Displays confirmation details after order has been successfully processed.
    *
    * @package templateSystem
    * @copyright Copyright 2003-2006 Zen Cart Development Team
    * @copyright Portions Copyright 2003 osCommerce
    * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
    * @version $Id: tpl_checkout_success_default.php 5407 2006-12-27 01:35:37Z drbyte $
    */
    ?>
    <div class="centerColumn" id="checkoutSuccess">

    <!--bof -gift certificate- send or spend box-->
    <?php
    // only show when there is a GV balance
    if ($customer_has_gv_balance ) {
    ?>
    <div id="sendSpendWrapper">
    <?php require($template->get_template_dir('tpl_modules_send_or_spend.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_send_or_spend.php'); ?>
    </div>
    <?php
    }
    ?>
    <!--eof -gift certificate- send or spend box-->

    <h1 id="checkoutSuccessHeading"><?php echo HEADING_TITLE; ?></h1>
    <div id="checkoutSuccessOrderNumber"><?php echo TEXT_YOUR_ORDER_NUMBER . $zv_orders_id; ?></div>

    <!-- bof Order Steps (tableless) -->
    <div id="order_steps">
    <div class="order_steps_text">
    <span class="order_steps_text2"><?php echo TEXT_ORDER_STEPS_1; ?></span><span class="order_steps_text3"><?php echo TEXT_ORDER_STEPS_2; ?></span><span class="order_steps_text4"><?php echo TEXT_ORDER_STEPS_3; ?></span><span id="active_step_text"><?php echo zen_image($template->get_template_dir(ORDER_STEPS_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . ORDER_STEPS_IMAGE, ORDER_STEPS_IMAGE_ALT); ?><br /><?php echo TEXT_ORDER_STEPS_4; ?></span>
    </div>
    <div class="order_steps_line_2">
    <span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span><span class="progressbar_active">&nbsp;</span>
    </div>
    </div>
    <!-- eof Order Steps (tableless) -->

    <?php if (DEFINE_CHECKOUT_SUCCESS_STATUS >= 1 and DEFINE_CHECKOUT_SUCCESS_STATUS <= 2) { ?>
    <div id="checkoutSuccessMainContent" class="content">
    <?php
    /**
    * require the html_defined text for checkout success
    */
    require($define_page);
    ?>
    </div>
    <?php } ?>
    <!--bof logoff-->
    <div id="checkoutSuccessLogoff">
    <?php
    if (isset($_SESSION['customer_guest_id'])) {
    echo TEXT_CHECKOUT_LOGOFF_GUEST;
    } elseif (isset($_SESSION['customer_id'])) {
    echo TEXT_CHECKOUT_LOGOFF_CUSTOMER;
    }
    ?>
    <div class="buttonRow forward"><a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo zen_image_button(BUTTON_IMAGE_LOG_OFF , BUTTON_LOG_OFF_ALT); ?></a></div>
    </div>
    <!--eof logoff-->
    <br class="clearBoth" />
    <!--bof -product notifications box-->
    <?php
    /**
    * The following creates a list of checkboxes for the customer to select if they wish to be included in product-notification
    * announcements related to products they've just purchased.
    **/
    if ($flag_show_products_notification == true) {
    ?>
    <fieldset id="csNotifications">
    <legend><?php echo TEXT_NOTIFY_PRODUCTS; ?></legend>
    <?php echo zen_draw_form('order', zen_href_link(FILENAME_CHECKOUT_SUCCESS, 'action=update', 'SSL')); ?>

    <?php foreach ($notificationsArray as $notifications) { ?>
    <?php echo zen_draw_checkbox_field('notify[]', $notifications['products_id'], true, 'id="notify-' . $notifications['counter'] . '"') ;?>
    <label class="checkboxLabel" for="<?php echo 'notify-' . $notifications['counter']; ?>"><?php echo $notifications['products_name']; ?></label>
    <br />
    <?php } ?>
    <div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_UPDATE, BUTTON_UPDATE_ALT); ?></div>
    </form>
    </fieldset>
    <?php
    }
    ?>
    <!--eof -product notifications box-->



    <!--bof -product downloads module-->
    <?php
    if (DOWNLOAD_ENABLED == 'true') require($template->get_template_dir('tpl_modules_downloads.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_downloads.php');
    ?>
    <!--eof -product downloads module-->

    <div id="checkoutSuccessOrderLink"><?php echo TEXT_SEE_ORDERS;?></div>

    <div id="checkoutSuccessContactLink"><?php echo TEXT_CONTACT_STORE_OWNER;?></div>

    <h3 id="checkoutSuccessThanks" class="centeredContent"><?php echo TEXT_THANKS_FOR_SHOPPING; ?></h3>
    </div>
    <?php
    } // flag_disable_footer
    ##########################################
    ## START JAM INTEGRATION WITH ZEN CART ##
    ## ZC Integration code by DrByte 8/2006 ##
    ##########################################
    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.d-r-l.com.com/jv/sale.php?amount=$commissionable_order&trans_id=$orders_id\"></script></td></tr>

    </table>";
    }
    #######################################
    ## END JAM INTEGRATION WITH ZEN CART ##
    #######################################

    ?>

  7. #57
    Join Date
    Nov 2007
    Location
    oregon
    Posts
    70
    Plugin Contributions
    0

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

    problem fixed thanks any way

  8. #58
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

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

    hello everyone!

    I just installed jam and am trying to integrate it into zencart. I had it successfully integrated in such that I Do see it in the source code when checkout is successful and I DO receive an email from jam saying how much commission has been generated from what sales amount.

    So I know it is working and calculating correctly.

    My problem is, when I log into admin in Jam, it does not show the commission nor the sales. It seems like it is not capturing the information.

    Anyone know what I am doing wrong?

  9. #59
    Join Date
    Aug 2006
    Posts
    47
    Plugin Contributions
    0

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

    pending commissions do not show up in any reports. you must view them in Commissions > Edit/Delete Commissions and approve them for it to show in other areas such as reports and the members area.

  10. #60
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

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

    AHHH! lifesaver!! Thank you! the solution is that simple!


    Quote Originally Posted by jroxonline View Post
    pending commissions do not show up in any reports. you must view them in Commissions > Edit/Delete Commissions and approve them for it to show in other areas such as reports and the members area.

 

 
Page 6 of 6 FirstFirst ... 456

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