Yea, see i don't know how to do this ...
Yea, see i don't know how to do this ...
In order to tell you all that you have to do, I would have to sit down and write the code to manage this for you ...
As I say, it can be done ... it just takes customization to the code to manage the conditions where a given Group Discount group controls the shipping module(s) ...
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!
Look at the shipping modules ...
You will see that there is a function that controls them via the $this->enabled example on the file:
/includes/modules/shipping/item.php
If you did a search in the Tools ... Developer's Tool Kit ... in the bottom input box for:PHP Code:// disable only when entire cart is free shipping
if (zen_get_shipping_enabled($this->code)) {
$this->enabled = ((MODULE_SHIPPING_ITEM_STATUS == 'True') ? true : false);
}
Select Catalog/Admin ... Click Search ...function zen_get_shipping_enabled
You would find two files with this function ...
The one in the Admin just returns true so that the module loads properly in the Modules ... Shipping ...
The one in the Catalog checks for various conditions and returns true or false when the shipping module should be displayed ...
If you were to write a function to manage the $this->enabled for the storepickup.php to look up the customer's group_id then you could make a similar function to enable/disable the shipping module ...
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!
[quote] /home/delights/public_html/store/includes/functions/functions_general.php [quote]
and
They are the two returns,/home/delights/public_html/store/admin/includes/functions/general.php
This is the one that i am guessing i want./home/delights/public_html/store/includes/functions/functions_general.php
Last edited by Darkwander; 1 Nov 2006 at 01:38 PM.