![]() |
Re: Color coded order status...
Nothing on variants anyone?
No thoughts or attempts? |
Re: Color coded order status...
I just implemented this mod by uploading the templates in the zip file (after modifying them to preserve the links in the order number and date as shown above). This apparently overwrote the code in the template that prevented users from changing status on Google Checkout orders in X-cart. I can now change status on the order view of all orders, including Google Checkout orders. Of course, this doesn't work backwards and update on Google. As far as I can tell, everything else is working fine. But, someone smarter than me should probably check this to make sure and perhaps modify the templates to avoid this overwrite.
In a way, I sort of like being able to make the change here to fix those instances where Google and X-Cart didn't communicate. So, I'm not sure this is a bad thing as long as users don't think they are updating the status of the Google order in this manner. WH PS: My fulfillment staff loved the change! |
Re: Color coded order status...
Has anyone else had these google checkout issues? I am wanting to install this mod on 4.1.9 but I would not want to affect the google checkout integration functionality
|
Re: Color coded order status...
I have figured out how to keep the Google Checkout Properties with the Color Coded Order Status, just use the following code instead of the one on page 12, or you can manually insert the color code using the original orders_list.tpl which is how I came up with this:
Code:
{* Colors modification MOD *} |
Re: Color coded order status...
Quote:
Look in your skin1/main/order_status.tpl and find the code for what "pre-order" is. Lets assume that it is "A" (since "P" is already used by "processed"). Open the orders_colors.tpl and add {if $orders[cat_num].status eq "A"} bgcolor="#B7DB86"} {/if} You need to open skin1/main/orders_list.tpl and find <tr{cycle values=", class='TableSubHead'"}> Under that you will find several <td>'s. These are the various columns that make up the list. Changing <td><a href="order.php?orderid={$orders[oid].orderid}">#{$orders[oid].orderid}</a></td> to <td {include file="main/orders_colors.tpl"}><a href="order.php?orderid={$orders[oid].orderid}">#{$orders[oid].orderid}</a></td> will make the column that has the order# highlighted to the color the order status is. The next column is the one that has the status dropdown box, and it should be pretty simple to continue across the page. |
Re: Color coded order status...
this mod is great but in the admin section i have no lost the links that use to be on the customer order so i could view the order with out having to look at the invoice (if that make's sense)
|
Re: Color coded order status...
any one?
|
Re: Color coded order status...
here is my 4.1.11 modded code for orders_list.tpl
Code:
{* $Id: orders_list.tpl,v 1.18.2.14 2008/05/16 13:57:44 zaa Exp $ *} |
Re: Color coded order status...
You don't have links because you removed them....
Code:
{* Colors modification MOD *} should include <a href="order.php?orderid={$orders[oid].orderid}">#{$orders[oid].orderid}</a> Code:
<tr{cycle values=", class='TableSubHead'"}> |
Re: Color coded order status...
thanks
|
All times are GMT -8. The time now is 09:28 PM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.