Results 1 to 2 of 2

Hybrid View

  1. #1
    Join Date
    Feb 2011
    Posts
    665
    Plugin Contributions
    0

    Default Problem with advanced shipper

    The following shows up at checkout:
    [SCR]http://i51.tinypic.com/142fqf7.png[/SCR]

    After scrolling down the rest of the my site is visible, but the following comes up when the payment method is selected:
    [SCR]http://i52.tinypic.com/sw8jlj.png[/SCR]


    I did perform the following per the Advanced Shipper:
    Order Total Summary Displays within the Store
    File: includes/templates/template_default/templates/tpl_modules_order_totals.php

    As with any other template file being modified for a store, the template file should copied from the template_default/templates folder to the template folder for the store.

    The following lines in this file output the Order Total information:

    for ($i=0; $i<$size; $i++) { ?>
    <div id="<?php echo str_replace('_', '', $GLOBALS[$class]->code); ?>">
    <div class="totalBox larger forward"><?php echo $GLOBALS[$class]->output[$i]['text']; ?></div>
    <div class="lineTitle larger forward"><?php echo $GLOBALS[$class]->output[$i]['title']; ?></div>
    </div>
    <br class="clearBoth" />
    <?php } ?>To simplify the output for the shipping info, a check needs to be made against which order total module is currently having its output formatted for display and the desired adjustments made. In this case, a title of “Shipping” is used for the Order Total line if it is the line concerned with outputting the shipping information:

    for ($i=0; $i<$size; $i++) { ?>
    <div id="<?php echo str_replace('_', '', $GLOBALS[$class]->code); ?>">
    <div class="totalBox larger forward"><?php
    if ($GLOBALS[$class]->code == 'ot_shipping') {
    echo 'Shipping';
    } else {
    echo $GLOBALS[$class]->output[$i]['text'];
    }
    ?></div>
    <div class="lineTitle larger forward"><?php echo $GLOBALS[$class]->output[$i]['title']; ?></div>
    </div>
    <br class="clearBoth" />
    <?php } ?>
    So what did I do wrong?
    Last edited by Kim; 3 Mar 2011 at 06:02 AM.

  2. #2
    Join Date
    Jun 2003
    Posts
    33,721
    Plugin Contributions
    0

    Default Re: Problem with advanced shipper

    I'm sorry, but you need to talk directly to the author - commercial modules are not supported on the forum.
    Please do not PM for support issues: a private solution doesn't benefit the community.

    Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.

 

 

Similar Threads

  1. v151 Advanced Shipper
    By hells1614 in forum General Questions
    Replies: 3
    Last Post: 24 Oct 2014, 11:09 PM
  2. Fedex Ground Home Delivery with Advanced Shipper?
    By awesomshot in forum Addon Shipping Modules
    Replies: 3
    Last Post: 12 Dec 2013, 04:54 PM
  3. v151 I can't get FedEx working with Advanced Shipper 5.02
    By jimmie in forum Addon Shipping Modules
    Replies: 4
    Last Post: 2 Sep 2013, 01:59 AM
  4. v151 Is CEON Advanced Shipper older version 4.2.2 compatible with zc 1.5.1?
    By roaryg in forum Addon Shipping Modules
    Replies: 8
    Last Post: 31 Mar 2013, 08:58 PM
  5. Advanced shipper
    By Sushigal in forum Addon Shipping Modules
    Replies: 2
    Last Post: 12 Jan 2010, 02:29 PM

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