Ah - that fixed it. What it was is that there are two occurrences of the section of code where you added the "echo", but when I first looked, I found the one that was already correct. So, in an untouched original admin/recover_cart_sales.php, downloaded from Andrew's site, at around line 368 find
Code:
<!-- Delete Button //-->
<td colspan='8' align='right'><a href="<?php zen_href_link(FILENAME_RECOVER_CART_SALES, 'action=delete&customer_id=' . $curcus . '&tdate=' . $tdate); ?>"><?php echo zen_image_button('button_delete.gif', IMAGE_DELETE); ?></a></td>
and replace with
Code:
<!-- Delete Button //-->
<td colspan='8' align='right'><a href="<?php echo zen_href_link(FILENAME_RECOVER_CART_SALES, 'action=delete&customer_id=' . $curcus . '&tdate=' . $tdate); ?>"><?php echo zen_image_button('button_delete.gif', IMAGE_DELETE); ?></a></td>
(The other occurrence is around line 508)
Thanks Paul ... now, if only someone could come up with that manual switch from "uncontacted" to "contacted" ....
Bookmarks