
Originally Posted by
dave_nextexit
Thanks Clyde...is there a way to make the text next to the numbers links so that customers can quickly go to any previous step of the checkout process?
Yep, sure is.
open includes/languages/english/extra_definitions/YOUR_TEMPLATE/order_steps_defines.php
replace these definitions:
Code:
define('TEXT_ORDER_STEPS_1', 'Shipping Information');
define('TEXT_ORDER_STEPS_2', 'Payment Information');
with the following:
Code:
if ($current_page_base == 'checkout_payment' || $current_page_base == 'checkout_confirmation') {
define('TEXT_ORDER_STEPS_1', '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">Shipping Information</a>');
} else {
define('TEXT_ORDER_STEPS_1', 'Shipping Information');
}
if ($current_page_base == 'checkout_confirmation') {
define('TEXT_ORDER_STEPS_2', '<a href="' . zen_href_link(FILENAME_CHECKOUT_PAYMENT, '', 'SSL') . '">Payment Information</a>');
}else{
define('TEXT_ORDER_STEPS_2', 'Payment Information');
}
Save the edited file and upload it to your server.
open includes/templates/YOUR_TEMPLATE/css/stylesheet.css
add the following declarations:
.progressmeter li a {color:#7DB2E8;}
.progressmeter li a:hover {color:#fff; background:#FF9900;}
Save the edited file and upload to your server.