Results 1 to 10 of 31

Threaded View

  1. #17
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: S & H extra charge for some items

    More or less just this section of code:
    Code:
            default:
            $show_box_weight = ' (' . $shipping_num_boxes . ' x ' . number_format($shipping_weight,2) . TEXT_SHIPPING_WEIGHT . ')';
            break;
          }
        }
    
    // bof: Add extra charge for heavy items in cart
    $chk_cart = 0;
    $chk_cart += $_SESSION['cart']->in_cart_check('products_id','10');
    $chk_cart += $_SESSION['cart']->in_cart_check('products_id','12');
    $chk_cart += $_SESSION['cart']->in_cart_check('products_id','15');
    $chk_cart += $_SESSION['cart']->in_cart_check('products_id','3736');
    $extra_charge = $chk_cart * .75;
    echo 'Table Extra charges $chk_cart: ' . $chk_cart . ' $extra_charge: ' . $extra_charge . '<br>';
    
        $this->quotes = array('id' => $this->code,
        'module' => MODULE_SHIPPING_TABLE_TEXT_TITLE . $show_box_weight,
        'methods' => array(array('id' => $this->code,
        'title' => MODULE_SHIPPING_TABLE_TEXT_WAY,
        'cost' => $extra_charge + $shipping + (MODULE_SHIPPING_TABLE_HANDLING_METHOD == 'Box' ? MODULE_SHIPPING_TABLE_HANDLING * $shipping_num_boxes : MODULE_SHIPPING_TABLE_HANDLING) ) ));
    
        if ($this->tax_class > 0) {
    Last edited by Ajeh; 28 Dec 2015 at 10:12 PM.
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 

Similar Threads

  1. Replies: 15
    Last Post: 24 Feb 2014, 06:23 PM
  2. Adding extra shipping charge to specific items
    By kevinoneil68 in forum General Questions
    Replies: 1
    Last Post: 22 Nov 2011, 02:21 AM
  3. Some items available for international shipping & some not? Anyone know how?
    By Treasuresbycaz in forum Built-in Shipping and Payment Modules
    Replies: 3
    Last Post: 11 Jan 2009, 11:08 PM
  4. extra shipping charge on certain items
    By deer_boy in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 6 Jun 2008, 02:02 PM
  5. Extra charge for specific bulky items (table-weight module)
    By SHK in forum Built-in Shipping and Payment Modules
    Replies: 4
    Last Post: 9 Apr 2008, 12:23 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