Page 12 of 65 FirstFirst ... 210111213142262 ... LastLast
Results 111 to 120 of 649
  1. #111
    Join Date
    Feb 2007
    Location
    Barcelona
    Posts
    201
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    that was made
    my question is:how to invert the marked option as default?

  2. #112
    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 tonibarcelona View Post
    that was made
    my question is:how to invert the marked option as default?
    Open includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php

    Find the following code:


    PHP Code:
    <?php echo '<option value="' ENTRY_ACTION_REFUND '">' ENTRY_ACTION_REFUND '</option>' ?>
    <?php 
    echo '<option value="' ENTRY_ACTION_REPLACE '">' ENTRY_ACTION_REPLACE '</option>' ;?>
    You can simply reverse the two statements as follows:

    PHP Code:
    <?php echo '<option value="' ENTRY_ACTION_REPLACE '">' ENTRY_ACTION_REPLACE '</option>' ;?>
    <?php 
    echo '<option value="' ENTRY_ACTION_REFUND '">' ENTRY_ACTION_REFUND '</option>' ?>

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

    red flag Return Authorization Module (2.1.3)

    Return Authorization Module (2.1.3) Released

    This upgrade of the Return Authorization MOD contains the following Features:

    Features now available in the admin menu:

    admin -> configuration -> Return Authorization

    Phone Number (Display phone number field) can be set to true/false
    Total Value (Display Total Value field) can be set to true/false
    Item Number (Display Item Number field) can be set to true/false
    Only registered customers may submit a return request can be set to true/false

    New option -
    Set "Return Action" Dropdown List (You can set your own "Action Requested" dropdown list - refund, replacement -) making it as long or as short as necessary.

    Fixed
    Customer details inserted automatically if they are logged in. (fixed a problem with filling in the "State" field mentioned by Boggled

  4. #114
    Join Date
    Mar 2006
    Location
    Tennessee
    Posts
    310
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Cool Clyde!

    I'm off to install the new version now.
    I'll finish that project tomorrow, I've made enough mistakes today!

  5. #115
    Join Date
    Mar 2006
    Location
    Tennessee
    Posts
    310
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Works great!!

    Only thing I noticed was some of the formatting on the customer's email.
    This is what it looked like:

    Dear Test EmailThank you for your recent request.

    Your request has been successfully submitted to Old River Rat Driftwood. It
    will be reviewed and you will receive an email with instructions on how to
    proceed. If you have not received it within the next 48 hours, please
    contact us before submitting your request again.For help with our Returns
    Policy, please email the store-owner: [email protected]: This
    email address was given to us during a Return Authorization Request. If you
    have a problem, please send an email to [email protected].
    The parts in red are what I need to fix. I think all they need is a <br> added in. Which file would I go to?

    Thanks for all your hard work!!
    I'll finish that project tomorrow, I've made enough mistakes today!

  6. #116
    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 Boggled View Post
    Works great!!

    Only thing I noticed was some of the formatting on the customer's email.
    This is what it looked like:



    The parts in red are what I need to fix. I think all they need is a <br> added in. Which file would I go to?

    Thanks for all your hard work!!
    Hmmmm, I just checked the new file and the <br /> tags are/were included.

    Any way check includes/languages/english/YOUR_TEMPLATE/returns.php

    These are the define statements involved.

    PHP Code:
    define('EMAIL_GREET_NONE''Dear %s,<br />');
    define('EMAIL_WELCOME''Thank you for your recent request.<br />');
    define('EMAIL_TEXT''Your request has been successfully submitted to ' STORE_NAME '. It will be reviewed and you will receive an email with instructions on how to proceed. If you have not received it within the next 48 hours, please contact us before submitting your request again.<br />');
    define('EMAIL_CONTACT''For help with our Returns Policy, please email the store-owner: ' STORE_OWNER_EMAIL_ADDRESS '.<br />');
    define('EMAIL_WARNING''<b>Note:</b> This email address was given to us during a Return Authorization Request. If you have a problem, please send an email to ' STORE_OWNER_EMAIL_ADDRESS '.<br />'); 

  7. #117
    Join Date
    Feb 2007
    Location
    Barcelona
    Posts
    201
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    many thanks for your reply, Clyde!!
    Now, i´m working at installing your new version!!

    You work faster at making new version than me at installing!!

  8. #118
    Join Date
    Mar 2006
    Location
    Tennessee
    Posts
    310
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by clydejones View Post
    Hmmmm, I just checked the new file and the <br /> tags are/were included.

    Any way check includes/languages/english/YOUR_TEMPLATE/returns.php

    These are the define statements involved.

    PHP Code:
    define('EMAIL_GREET_NONE''Dear %s,<br />');
    define('EMAIL_WELCOME''Thank you for your recent request.<br />');
    define('EMAIL_TEXT''Your request has been successfully submitted to ' STORE_NAME '. It will be reviewed and you will receive an email with instructions on how to proceed. If you have not received it within the next 48 hours, please contact us before submitting your request again.<br />');
    define('EMAIL_CONTACT''For help with our Returns Policy, please email the store-owner: ' STORE_OWNER_EMAIL_ADDRESS '.<br />');
    define('EMAIL_WARNING''<b>Note:</b> This email address was given to us during a Return Authorization Request. If you have a problem, please send an email to ' STORE_OWNER_EMAIL_ADDRESS '.<br />'); 

    Hi Clyde!

    Sorry for the delay in returning to this thread to thank you for your response.
    I checked the file and it has all the correct breaks. Not sure why it still comes thru quirky, but I'm not worrying about it too much. LOL

    I did run across something else today though and seems like I remember this being a glitch in the original version. If you hit 'reply' to respond to the RA email, the store email address is who it sends the message to instead of the customer.

    Is there a fix for this?

    Thanks again!
    I'll finish that project tomorrow, I've made enough mistakes today!

  9. #119
    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 Boggled View Post
    Hi Clyde!

    Sorry for the delay in returning to this thread to thank you for your response.
    I checked the file and it has all the correct breaks. Not sure why it still comes thru quirky, but I'm not worrying about it too much. LOL

    I did run across something else today though and seems like I remember this being a glitch in the original version. If you hit 'reply' to respond to the RA email, the store email address is who it sends the message to instead of the customer.

    Is there a fix for this?

    Thanks again!
    I'll check on this and get back to you.

  10. #120
    Join Date
    Jun 2006
    Location
    My family and I live in Brighton, England
    Posts
    982
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by clydejones View Post
    Open includes/languages/english/YOUR_TEMPLATE/returns.php

    Find the following entries and change them as necessary.

    define('ENTRY_ACTION_REFUND', 'Refund');
    define('ENTRY_ACTION_REPLACE', 'Replacement');
    Hi Clyde - Thanks for this very useful module.

    What am I missing here? I want to add "Store Credit" as an option to the "Action Requested:" list. I've made the following changes to returns.php:
    PHP Code:
    define('ENTRY_ACTION''Action Requested:');
    define('ENTRY_ACTION_REFUND''Refund');
    define('ENTRY_ACTION_STORE_CREDIT''Store Credit');
    define('ENTRY_ACTION_REPLACE''Replacement');
    define('ENTRY_REASON''Reason for Return:'); 
    But see no change. Can you see what I've done incorrectly or incompletely?

    Thanks!

    Tim

 

 
Page 12 of 65 FirstFirst ... 210111213142262 ... LastLast

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

Bookmarks

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
Zen-Cart, Internet Selling Services, Klamath Falls, OR