Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / shipping estimator button

shipping estimator button

Locked

Views: 950

Results 1 to 6 of 6
This thread is locked. New replies are disabled.
16 Sep 2008, 5:15 AM
#1
abcoombe avatar

abcoombe

New Zenner

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

shipping estimator button

Can I remove the shipping estimator button off of the checkout page? We offer free shipping, and there are no alternatives to shipping, so we don't need the button.

Thanks!

16 Sep 2008, 5:49 AM
#2
bobdog avatar

bobdog

Totally Zenned

Join Date:
Mar 2006
Location:
Fresno, California
Posts:
590
Plugin Contributions:
0

Re: shipping estimator button

You could comment out the shipping estimator in

includes/templates/template_default/templates/tpl_shopping_cart_default.php

<div class="buttonRow back"><?php echo '<a href="javascript:popupWindow(\'' . zen_href_link(FILENAME_POPUP_SHIPPING_ESTIMATOR) . '\')">' .
 zen_image_button(BUTTON_IMAGE_SHIPPING_ESTIMATOR, BUTTON_SHIPPING_ESTIMATOR_ALT) . '</a>'; ?></div>

Change to:

<div class="buttonRow back"><?php /* echo '<a href="javascript:popupWindow(\'' . zen_href_link(FILENAME_POPUP_SHIPPING_ESTIMATOR) . '\')">' .
 zen_image_button(BUTTON_IMAGE_SHIPPING_ESTIMATOR, BUTTON_SHIPPING_ESTIMATOR_ALT) . '</a>'; */ ?></div>

and save to includes/templates/my_template/templates/tpl_shopping_cart_default.php

OR

add this to your stylesheet:

.shippingEstimator { display: none; }

AND change the <div class="buttonRow back">

TO

<div class="shippingEstimator">

16 Sep 2008, 5:52 AM
#3
abcoombe avatar

abcoombe

New Zenner

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

Re: shipping estimator button

Thank you! I'll give that a shot.

16 Sep 2008, 6:04 AM
#4
bobdog avatar

bobdog

Totally Zenned

Join Date:
Mar 2006
Location:
Fresno, California
Posts:
590
Plugin Contributions:
0

Re: shipping estimator button

Hang on! -- there is an admin setting for this!

Configuration > shipping/packaging > shipping estimator display >> set to 0

16 Sep 2008, 6:31 AM
#5
prettyreplica avatar

prettyreplica

New Zenner

Join Date:
Sep 2008
Posts:
1
Plugin Contributions:
0

Re: shipping estimator button

Great! thanks a lot 2

17 Sep 2008, 3:34 AM
#6
abcoombe avatar

abcoombe

New Zenner

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

Re: shipping estimator button

That worked perfectly!! What about removing the total items and weight off of the top of the page?