Page 1 of 2 12 LastLast
Results 1 to 10 of 33

Hybrid View

  1. #1
    Join Date
    Oct 2015
    Posts
    30
    Plugin Contributions
    0

    Default Re: Need help with shipping

    Quote Originally Posted by mc12345678 View Post
    How are your sized items arranged? (For example, are all of your big items in a particular category?) There are several ways to look at this. All small items only in a particular category, all large items in a category or not in a category, by manufacturer, etc... The goal being to identify a particular trait that when an item from that grouping is in the cart then the applicable shipping method is used.
    They are not arranged like that. There is big and small items in all categories... There is also lot of manufacturers and even amongs them there is small and big items. Honestly, I don't think there is one trait that I could pick for different size items.

    I was hoping that there would be module like this I could have added. For some reason this one didn't work at my site.

    I don't mind if I have to go through all items and mark them big or small one by one.

  2. #2
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Need help with shipping

    Quote Originally Posted by Miru View Post
    They are not arranged like that. There is big and small items in all categories... There is also lot of manufacturers and even amongs them there is small and big items. Honestly, I don't think there is one trait that I could pick for different size items.

    I was hoping that there would be module like this I could have added. For some reason this one didn't work at my site.

    I don't mind if I have to go through all items and mark them big or small one by one.
    So there *are* ways to put items in a category to then link them to some other category. As to the above plugin, I haven't used it, but it appears that the requirements to install include file merging (which means can't just upload the files for it to work). When you say "it didn't work" more information is needed in order to offer suggestions on a way forward...
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  3. #3
    Join Date
    Oct 2015
    Posts
    30
    Plugin Contributions
    0

    Default Re: Need help with shipping

    According to my friend there was no tare group that could have been modified at taxes/area menu.

  4. #4
    Join Date
    Jul 2012
    Posts
    16,817
    Plugin Contributions
    17

    Default Re: Need help with shipping

    Quote Originally Posted by Miru View Post
    According to my friend there was no tare group that could have been modified at taxes/area menu.
    Well, not having used the plugin, I'm not sure how that all plays into it. I don't see a specific forum on the program, but maybe either of the two that have worked on it could help if you reached out by PM. Perhaps with some more searching a thread or two would pop up about it, but beyond that I don't see what other way(s) to help on making the plugin functional for your store without going through the process of installation myself.

    As to other options related to the issue at hand, either an additional plugin could be installed (numinix additional products fields for example) that would offer a toggle switch that could be used as a "big/small" item indicator and then you would want to clone one of the shipping modules that offer shipping by weight such that if no big items in the cart, then the small shipping module is active and the big is inactive, and vice versa perhaps...
    ZC Installation/Maintenance Support <- Site
    Contribution for contributions welcome...

  5. #5
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Need help with shipping

    Quote Originally Posted by mc12345678 View Post
    Well, not having used the plugin, I'm not sure how that all plays into it. I don't see a specific forum on the program, but maybe either of the two that have worked on it could help if you reached out by PM. Perhaps with some more searching a thread or two would pop up about it, but beyond that I don't see what other way(s) to help on making the plugin functional for your store without going through the process of installation myself.

    As to other options related to the issue at hand, either an additional plugin could be installed (numinix additional products fields for example) that would offer a toggle switch that could be used as a "big/small" item indicator and then you would want to clone one of the shipping modules that offer shipping by weight such that if no big items in the cart, then the small shipping module is active and the big is inactive, and vice versa perhaps...
    Fairly simple it uses an observer:
    PHP Code:
        $zco_notifier->attach($this, array('NOTIFY_SHIPPING_MODULE_PRE_CALCULATE_BOXES_AND_TARE','NOTIFY_SHIPPING_MODULE_CALCULATE_BOXES_AND_TARE')); 
    then it takes the product's weight and adds the tare value for that group.

    Example:

    Group 1: has a tare weight of 1.5
    Group 2: has a tare weight of 2

    Widget: Weighs 2.2
    Whatsit: Weights 1.8

    So if you have:
    2 Wigets and 3 Whatsits.


    Detailed Math:
    2(Wiget) + 3 (Whatsit)
    2(1.5 + 2.2) + 3(2+1.8)
    2(3.7) + 3(3.8)
    7.4 + 11.4

    the Weight would be: 18.8

    then:

    $shipping_weight = 18.8

    Hopefully that makes it slightly more clear

  6. #6
    Join Date
    Sep 2012
    Location
    West Jefferson, NC
    Posts
    391
    Plugin Contributions
    0

    Default Re: Need help with shipping

    This is the only "Need Help With Shipping" thread that is not closed.

    Sorry if this is off the topic of the original post...but as usual, I can't find the place to start a new thread.

    I've searched and read several threads related to "multiple ship origin zip codes", "shipping help", "dropship shipping", etc. None of the threads I've ran across in the last couple of days have a usable answer.

    I have multiple ship origin zip codes for my products (114,000) but Zencart only has one location for shipping ORIGIN zip code...which is set in admin/configuration/shipping/packing/postal code.

    I need to replace the admin ship origin zip code with each products unique ship origin zip code just before it is evaluated for UPS shipping cost. I believe(hope) that is the only change I need to make in order to get accurate shipping cost for each product.

    I've added a column to my products table, "ship_zip" for each product but I need a way to plug that zip code into shipping cost evaluation process.

    I have studied the ups.php module in depth and I know (think) I need to change the configuration table just before line 148:

    PHP Code:
    $this->_upsOrigin(SHIPPING_ORIGIN_ZIP$country_name['countries_iso_code_2']); 
    with a simple query like:

    PHP Code:
    [B]$products_ship_zip[/B] = $db->query("SELECT ship_zip FROM products WHERE products_id = PRODUCT BEING EVALUATED FOR SHIPPING");

    $query = ("UPDATE $configuration
    SET 
    $configuration.`configuration_value` = [B]'$products_ship_zip'[/B]
    WHERE 
    $configuration.`configuration_key` = 'SHIPPING_ORIGIN_ZIP' ");
    $stmt $db->prepare($query);
    $stmt->execute(); 
    What variable is represents the products_id during the shipping cost evaluation process?

    I've tried echo testing the ups.php module but can not put my finger on the products_id variable.

    Does the ups.php module evaluate shipping cost a product at a time or in bulk? I'm assuming one at at time.

    Should I be setting the $products_ship_zip and changing the configuration in a different file?

    Thanks in advance for any help anyone can provide.
    Last edited by mikeel100; 22 Oct 2015 at 12:01 AM.

  7. #7
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Need help with shipping

    Quote Originally Posted by mikeel100 View Post
    This is the only "Need Help With Shipping" thread that is not closed.

    Sorry if this is off the topic of the original post...but as usual, I can't find the place to start a new thread.

    I've searched and read several threads related to "multiple ship origin zip codes", "shipping help", "dropship shipping", etc. None of the threads I've ran across in the last couple of days have a usable answer.

    I have multiple ship origin zip codes for my products (114,000) but Zencart only has one location for shipping ORIGIN zip code...which is set in admin/configuration/shipping/packing/postal code.

    I need to replace the admin ship origin zip code with each products unique ship origin zip code just before it is evaluated for UPS shipping cost. I believe(hope) that is the only change I need to make in order to get accurate shipping cost for each product.

    I've added a column to my products table, "ship_zip" for each product but I need a way to plug that zip code into shipping cost evaluation process.

    I have studied the ups.php module in depth and I know (think) I need to change the configuration table just before line 148:

    PHP Code:
    $this->_upsOrigin(SHIPPING_ORIGIN_ZIP$country_name['countries_iso_code_2']); 
    with a simple query like:

    PHP Code:
    [B]$products_ship_zip[/B] = $db->query("SELECT ship_zip FROM products WHERE products_id = PRODUCT BEING EVALUATED FOR SHIPPING");

    $query = ("UPDATE $configuration
    SET 
    $configuration.`configuration_value` = [B]'$products_ship_zip'[/B]
    WHERE 
    $configuration.`configuration_key` = 'SHIPPING_ORIGIN_ZIP' ");
    $stmt $db->prepare($query);
    $stmt->execute(); 
    What variable is represents the products_id during the shipping cost evaluation process?

    I've tried echo testing the ups.php module but can not put my finger on the products_id variable.

    Does the ups.php module evaluate shipping cost a product at a time or in bulk? I'm assuming one at at time.

    Should I be setting the $products_ship_zip and changing the configuration in a different file?

    Thanks in advance for any help anyone can provide.
    If the understanding of your question is correct you want to vary the origin zip code based on the zip-code it comes from?

  8. #8
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Need help with shipping

    Quote Originally Posted by Miru View Post
    According to my friend there was no tare group that could have been modified at taxes/area menu.
    What are the configuration values set at?

  9. #9
    Join Date
    Oct 2015
    Posts
    30
    Plugin Contributions
    0

    Default Re: Need help with shipping

    Quote Originally Posted by bislewl View Post
    What are the configuration values set at?
    Sorry, I really don't understand the question. Can you be more specific?

  10. #10
    Join Date
    Dec 2011
    Location
    Wisconsin, USA
    Posts
    674
    Plugin Contributions
    21

    Default Re: Need help with shipping

    Quote Originally Posted by Miru View Post
    Sorry, I really don't understand the question. Can you be more specific?
    In the admin:
    Configuration -> Product Tare Groups

 

 
Page 1 of 2 12 LastLast

Similar Threads

  1. Need help with shipping
    By enetllc in forum Built-in Shipping and Payment Modules
    Replies: 27
    Last Post: 17 Sep 2010, 04:46 AM
  2. Need Help With UPS shipping
    By midnightwalker in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 12 Aug 2010, 05:24 AM
  3. Need Help with Shipping
    By icecopi in forum Built-in Shipping and Payment Modules
    Replies: 12
    Last Post: 4 Apr 2009, 04:51 AM
  4. Need Help With Shipping
    By GalaxiDesigns in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 9 Feb 2008, 05:49 AM
  5. need help with shipping config
    By z3nus3r in forum Built-in Shipping and Payment Modules
    Replies: 1
    Last Post: 3 Jul 2007, 03:01 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