Results 1 to 10 of 649

Hybrid View

  1. #1
    Join Date
    Sep 2009
    Location
    North Carolina
    Posts
    19
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    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', '');

  2. #2
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Return Authorization Module (RMA)

    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)

  3. #3
    Join Date
    Sep 2009
    Location
    North Carolina
    Posts
    19
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by clydejones View Post
    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)

    Thank you for your help clydejones....I was able to fix the problem

 

 

Similar Threads

  1. v151 Flexible Return Authorization (RMA) for ZC v1.5.x [Support Thread]
    By DivaVocals in forum All Other Contributions/Addons
    Replies: 167
    Last Post: 11 Apr 2021, 08:56 PM
  2. Return Authorization Module
    By itspec in forum All Other Contributions/Addons
    Replies: 13
    Last Post: 10 Feb 2009, 11:29 PM
  3. Return Merchandise Authorization (RMA) Module Follow-up
    By killertofu in forum Managing Customers and Orders
    Replies: 1
    Last Post: 11 Aug 2008, 11:13 PM
  4. Return Authorization Module (RMA)
    By dscott1966 in forum All Other Contributions/Addons
    Replies: 0
    Last Post: 11 Nov 2006, 08:04 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg