Greetings,
We do a set of specials every month and I always thought it would be helpful to show a yellow icon for upcoming specials on the Admin Specials page.
Here's my snippet to do just that...
In your_admin/specials.php
Find:
Replace With:Code:<input type="image" src="<?php echo DIR_WS_IMAGES ?>icon_red_on.gif" title="<?php echo IMAGE_ICON_STATUS_OFF; ?>"
Enjoy!Code:<input type="image" src="<?php echo ($specials->fields['specials_date_available'] > date("Y-m-d")? DIR_WS_IMAGES . 'icon_yellow_on.gif' : DIR_WS_IMAGES . 'icon_red_on.gif')?>" title="<?php echo IMAGE_ICON_STATUS_OFF; ?>" />![]()


Reply With Quote
