Zen Cart Logo
Forums / Discounts/Coupons, Gift Certificates, Newsletters, Ads / Free shipping for a group customer

Free shipping for a group customer

Locked

Views: 7,352

Results 1 to 16 of 16
This thread is locked. New replies are disabled.
1 Oct 2007, 5:29 AM
#1
charley518 avatar

charley518

New Zenner

Join Date:
Nov 2006
Posts:
8
Plugin Contributions:
0

Free shipping for a group customer

I found how to set group % discount. But, I also want to to offer free shipping for some groups of customers. How should I set up this? Thank you.

17 Oct 2008, 10:06 AM
#2
anniti avatar

anniti

New Zenner

Join Date:
May 2008
Posts:
33
Plugin Contributions:
0

Re: Free shipping for a group customer

I'd like to do the same thing.
regards, anna

17 Oct 2008, 5:04 PM
#3
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Free shipping for a group customer

Is this Free Shipping forever?

Is this Free Shipping for One Order Only?

Can you give more specifics?

17 Oct 2008, 5:19 PM
#4
anniti avatar

anniti

New Zenner

Join Date:
May 2008
Posts:
33
Plugin Contributions:
0

Re: Free shipping for a group customer

hi Linda,
The idea is to offer free shipping is for a certain group of customers and should be forever :), (we offer a organic-home-delivery-service).
The problem is that the discount for a group is on a percentage basis and our shipping is a fixed amount.
Thank you, Anna

17 Oct 2008, 10:31 PM
#5
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Free shipping for a group customer

So anyone in Group ABC gets the associated discount and should be offered a Free Shipping Option ... or just get the Free Shipping Option and no other choices?

NOTE: Offering a Free Shipping Option based on some criteria is easier than forcing a Free Shipping Option and no other choice ...

18 Oct 2008, 6:16 AM
#6
anniti avatar

anniti

New Zenner

Join Date:
May 2008
Posts:
33
Plugin Contributions:
0

Re: Free shipping for a group customer

that's the point, no discount, just free shipping...

18 Oct 2008, 6:25 AM
#7
anniti avatar

anniti

New Zenner

Join Date:
May 2008
Posts:
33
Plugin Contributions:
0

Re: Free shipping for a group customer

of course if the group discount could be a fixed amount, would be wonderful as well.

18 Oct 2008, 2:39 PM
#8
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Free shipping for a group customer

This code could be turned into something:

    $group_query = $db->Execute("select customers_group_pricing from " . TABLE_CUSTOMERS . " where customers_id = '" . (int)$_SESSION['customer_id'] . "'");
    if ($group_query->fields['customers_group_pricing'] != '0') {
      $group_discount = $db->Execute("select group_name, group_percentage from " . TABLE_GROUP_PRICING . "
                                      where group_id = '" . (int)$group_query->fields['customers_group_pricing'] . "'");
// do something here with the $group_discount->fields['group_percentage']
// do something here because (int)$group_query->fields['customers_group_pricing'] has a value
}
20 Oct 2008, 12:42 PM
#9
anniti avatar

anniti

New Zenner

Join Date:
May 2008
Posts:
33
Plugin Contributions:
0

Re: Free shipping for a group customer

hi Linda,
I freewheeled somewhat in the direction you pointed out to me, but being an complete PHP-ignorant I didn't get very far.

$discount = ($order_total - $gift_vouchers) * $group_discount->fields['group_percentage'] / 100;

modified in

$discount = 4

results in a discount of €4.03 (which is something)

but isn't it possible to just add something like:

if (if ($group_query->fields['customers_group_pricing'] != '0' && $group_id ==1) /my free-shipping group ID {
$discount = 4;
}

thank you very much for your interest, anna

20 Oct 2008, 3:28 PM
#10
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Free shipping for a group customer

That is more along the lines of what I mean ...

Obtain the customer's group id and if it matches the one you want to discount you can then manage what shipping modules show or do not show or apply a discount as needed ...

12 Mar 2009, 6:05 PM
#11
resqjock avatar

resqjock

Zen Follower

Join Date:
Aug 2008
Posts:
114
Plugin Contributions:
0

Re: Free shipping for a group customer

Is there any way to incorperate this into "Group Discount" on the Admin side??

Instead of just having a percentage for a group, you can set up "free shipping" as a choice??

Stan

17 Mar 2009, 8:49 PM
#12
lextechs avatar

lextechs

Zen Follower

Join Date:
Mar 2005
Location:
Tempe, AZ
Posts:
316
Plugin Contributions:
0

Re: Free shipping for a group customer

Resqjock:

Is there any way to incorperate this into "Group Discount" on the Admin side??

Instead of just having a percentage for a group, you can set up "free shipping" as a choice??

Stan

So has any one came up with a way to offer a group of customers free shipping?

17 Mar 2009, 9:03 PM
#13
lextechs avatar

lextechs

Zen Follower

Join Date:
Mar 2005
Location:
Tempe, AZ
Posts:
316
Plugin Contributions:
0

Re: Free shipping for a group customer

Resqjock:

Is there any way to incorperate this into "Group Discount" on the Admin side??

Instead of just having a percentage for a group, you can set up "free shipping" as a choice??

Stan

So has any one came up with a way to offer a group of customers free shipping?

13 Sep 2009, 1:35 PM
#14
spid3r1987 avatar

spid3r1987

Zen Follower

Join Date:
Jul 2009
Posts:
497
Plugin Contributions:
0

Re: Free shipping for a group customer

create a coupon for free delivery??
admin>gift cer>coupon admin

name it all up
tick the "free delivery" box
then give it a coupon name...
give the coupon details to that group only....

20 Jan 2010, 11:31 PM
#15
aboveallfabric avatar

aboveallfabric

New Zenner

Join Date:
Feb 2009
Posts:
17
Plugin Contributions:
0

Re: Free shipping for a group customer

I have local people that would like to take advantage of other coupons tho AND not pay for shipping (they come pick the items up) So the system will only allow use of one coupon. I would love to have a group that always recieves free shipping so I don't have to refund the shipping (which isn't the end of the world, just another step)

21 Jan 2010, 12:51 AM
#16
ajeh avatar

ajeh

Oba-san

Join Date:
Sep 2003
Location:
Ohio
Posts:
62,757
Plugin Contributions:
1

Re: Free shipping for a group customer

Have you tried installing the Shipping Module for the Store Pickup storepickup ...