Glad you fixed it.. Thanks![]()
Glad you fixed it.. Thanks![]()
Clyde-
Thanks for updating this mod so it is CSS based.
When I compared the template files in your version I discovered they are based on older Zen Cart code, not template files distributed with Zen Cart 1.36. Thus I noticed some 1.36 code missing.
I suggest to anyone installing this mod, to compare and merge, rather than directly uploading the template files. It's easy to do as there is a custom code block that needs to be copied and inserted into each template file (the code block is just a bit different for each of the four files).
One other item... I discovered the CSS was the same for all four files, except that checkout_success.css has one more entry
It appears that this causes the Order Steps center "box" to push into the right column (on a site displaying both left and right column sideboxes). When I removed the width entry all was well.Code:#order_steps { width: 100%; }
Also I observed on each of the checkout pages the Order Steps center "box" "rubs" on the left & right columns. I made the following adjustment to the #order_steps class in each of the four CSS files to add some margin:
Hope this helps someone.Code:replace: margin: 10px 0 10px 0; with: margin: 10px 10px 10px 10px;
Woody
Last edited by Woodymon; 17 Dec 2006 at 10:23 AM.
Woody,
I'll pull your suggestions together and post an update.
An updated version based on Woody's suggestions is now in the downloads section.
Just tried the latest Order Steps, and it looks like TEXT_CUSTOMER_MESSAGE is still in the /includes/templates/YOUR_TEMPLATE/templates/tpl_checkout_payment_default.php file
HTH :-)
It is possible you has installed a previous version of Order Steps and you had inserted a TEXT_CUSTOMER_MESSAGE define in
/includes/languages/english/checkout_payment.php
(or maybe you have in override)
That define is no longer needed.
Note the Order Steps current version block of code in that template file does not call that define:
WoodyCode:<!--bof order steps (tableless) --> <div id="order_steps"> <div class="order_steps_text"> <span class="order_steps_text2"><?php echo TEXT_ORDER_STEPS_1; ?></span><span id="active_step_text"><img src="<?php echo DIR_WS_TEMPLATE; ?>images/arrow_checkout.gif" width="24" height="24" alt="" border="0" align=""><br /><?php echo TEXT_ORDER_STEPS_2; ?></span><span class="order_steps_text3"><?php echo TEXT_ORDER_STEPS_3; ?></span><span class="order_steps_text4"><?php echo TEXT_ORDER_STEPS_4; ?></span> </div> <div class="order_steps_line_2"> <span class="progressbar_active"> </span><span class="progressbar_active"> </span><span class="progressbar_inactive"> </span><span class="progressbar_inactive"> </span> </div> </div> <!--eof order steps (tableless) -->
I'm working on a couple of other things at the moment so I'll try to post an update as soon as I can.
In the meantime open tpl_checkout_payment_default.php and delete <?php echo TEXT_CUSTOMER_MESSAGE; ?> around line 20.