Quote Originally Posted by Aplus Shoes View Post
Hello all, I have been searching for hours trying to figure this out

How can I disable the (2) images (exclamation.gif & optional.gif) from displaying.

I removed the info from return.php (see below) but there is a small broken icon appearing.

FYI - Firefox is displaying the RMA form correctly, however, IE is not..

MY WEBSITE: CLICK HERE

Thank you

define('RETURN_REQUIRED_INFORMATION', ' = Required Information<br />');
define('RETURN_OPTIONAL_INFORMATION', '');
define('RETURN_OPTIONAL_IMAGE','');
define('RETURN_OPTIONAL_IMAGE_ALT', '');
define('RETURN_OPTIONAL_IMAGE_HEIGHT', '');
define('RETURN_OPTIONAL_IMAGE_WIDTH', '');

define('RETURN_REQUIRED_IMAGE', 'star.gif');
define('RETURN_REQUIRED_IMAGE_ALT', 'required information');
define('RETURN_REQUIRED_IMAGE_HEIGHT', '');
define('RETURN_REQUIRED_IMAGE_WIDTH', '');
define('RETURN_WARNING_IMAGE', '');
define('RETURN_WARNING_IMAGE_ALT', '');
define('RETURN_WARNING_IMAGE_HEIGHT', '');
define('RETURN_WARNING_IMAGE_WIDTH', '');
two options available ( 1 simple, 1 more involved )

simple - create two 1 pixel transparent images and name them ( exclamation.gif , optional.gif )
upload these new images to includes/templates/YOUR_TEMPLATE/images

more involved - open includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php

find each src reference to ( exclamation.gif , optional.gif ) and delete them.
Code:
 . zen_image($template->get_template_dir(RETURN_OPTIONAL_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . RETURN_OPTIONAL_IMAGE, RETURN_OPTIONAL_IMAGE_ALT, RETURN_OPTIONAL_IMAGE_WIDTH, RETURN_OPTIONAL_IMAGE_HEIGHT)

 . zen_image($template->get_template_dir(RETURN_WARNING_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . RETURN_WARNING_IMAGE, RETURN_WARNING_IMAGE_ALT, RETURN_WARNING_IMAGE_WIDTH, RETURN_WARNING_IMAGE_HEIGHT)