
Originally Posted by
sampook
Is there a way to delete the message during check out that says you can change your shipping address by clicking the edit link?
Yes, edit the following four files:
includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_shipping_default.php
around line 27 add in the red
Code:
<div class="buttonRow forward"><?php //echo '<a href="' . $editShippingButtonLink . '">' . zen_image_button(BUTTON_IMAGE_CHANGE_ADDRESS, BUTTON_CHANGE_ADDRESS_ALT) . '</a>'; ?></div>
<?php } ?>
includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_payment_default.php
around line 45 add in the red
Code:
<div class="buttonRow forward"><?php //echo '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT_ADDRESS, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHANGE_ADDRESS, BUTTON_CHANGE_ADDRESS_ALT) . '</a>'; ?></div>
then edit your text to reflect your changes here:
includes/languages/english/YOUR_TEMPLATE/checkout_payment.php
around line 16
Code:
define('TEXT_SELECTED_BILLING_DESTINATION', 'Your billing address is shown to the left. The billing address should match the address on your credit card statement.');
and here:
includes/languages/english/YOUR_TEMPLATE/checkout_shipping.php
around line 16
Code:
define('TEXT_CHOOSE_SHIPPING_DESTINATION', 'Your order will be shipped to the address at the left.');
Hope that helps,