Just to let you know, I installed this and had to make a change to the code you supplied for Includes/Languages/YOUR_TEMPLATE/English.php:
Your supplied code:
Code:
Note: *** If you are using zen cart with regular shipping use this ***
// cart_steps
define('SHOPPING_CART_STEPS_0', '<img src="/images/shopping_cart/shopping_cart_steps_0.gif" alt="Login" />');
define('SHOPPING_CART_STEPS_1', '<img src="/images/shopping_cart/shopping_cart_steps_1.gif" alt="Shopping" />');
define('SHOPPING_CART_STEPS_2', '<img src="/images/shopping_cart/shopping_cart_steps_2.gif" alt="Shipping" />');
define('SHOPPING_CART_STEPS_3', '<img src="/images/shopping_cart/shopping_cart_steps_3.gif" alt="Payment" />');
define('SHOPPING_CART_STEPS_4', '<img src="/images/shopping_cart/shopping_cart_steps_4.gif" alt="Confirm" />');
define('SHOPPING_CART_STEPS_5', '<img src="/images/shopping_cart/shopping_cart_steps_5.gif" alt="Thank You" />');
Change I had to make:
Code:
Note: *** If you are using zen cart with regular shipping use this ***
// cart_steps
define('SHOPPING_CART_STEPS_0', '<img src="images/shopping_cart/shopping_cart_steps_0.gif" alt="Login" />');
define('SHOPPING_CART_STEPS_1', '<img src="images/shopping_cart/shopping_cart_steps_1.gif" alt="Shopping" />');
define('SHOPPING_CART_STEPS_2', '<img src="images/shopping_cart/shopping_cart_steps_2.gif" alt="Shipping" />');
define('SHOPPING_CART_STEPS_3', '<img src="images/shopping_cart/shopping_cart_steps_3.gif" alt="Payment" />');
define('SHOPPING_CART_STEPS_4', '<img src="images/shopping_cart/shopping_cart_steps_4.gif" alt="Confirm" />');
define('SHOPPING_CART_STEPS_5', '<img src="images/shopping_cart/shopping_cart_steps_5.gif" alt="Thank You" />');
This is because my store is not in the root of my server.