Page 34 of 65 FirstFirst ... 24323334353644 ... LastLast
Results 331 to 340 of 649
  1. #331
    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 stevenlee View Post
    First off, thank you very much for the great mod Clyde
    It works great

    One thing I have been looking to do is change the email address where the emails go to, is there any way to do that?
    Its set to send the e-mail to whatever you have set in

    admin -> configuration -> e-mail options -> Email Address (Displayed to Contact you)

  2. #332
    Join Date
    Jun 2008
    Posts
    85
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Hello Clyde,

    I'm sorry I should have been more specific, I wanted to know if there is a way to have it sent to a different email address so it can be sent directly to the rma guy's email

    thank you,
    Steve

  3. #333
    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 stevenlee View Post
    Hello Clyde,

    I'm sorry I should have been more specific, I wanted to know if there is a way to have it sent to a different email address so it can be sent directly to the rma guy's email

    thank you,
    Steve
    You'd have to modify two files in order to achieve this.

    includes/languages/english/YOUR_TEMPLATE/returns.php

    add a new define statement

    define('RMA_EMAIL', '[email protected]')

    open includes/modules/pages/returns/header_php.php

    find the following line of code (around line 83)
    PHP Code:
         zen_mail(STORE_OWNEREMAIL_FROMEMAIL_SUBJECT$text_message$name$email_address$html_msg'Returns'); 
    and replace the it with the following:
    PHP Code:
         zen_mail(STORE_OWNERRMA_EMAILEMAIL_SUBJECT$text_message$name$email_address$html_msg'Returns'); 

  4. #334
    Join Date
    Oct 2007
    Location
    Fairbanks, Alaska
    Posts
    426
    Plugin Contributions
    0

    help question Re: Return Authorization Module (RMA)

    I installed the mod some time ago, but did not test it completely, and now someone has use it and it does not work right, it sent an e-mail to the requester but does not notify the store owner, I imagine it should send an e-mail to the store owner?

    pete

  5. #335
    Join Date
    Oct 2007
    Location
    Fairbanks, Alaska
    Posts
    426
    Plugin Contributions
    0

    Have a Drink Re: Return Authorization Module (RMA)

    I got it, after reviewing the files some of the files got over writing, I fix it by upgrading to the newest version, sorry to bother!

    pete

  6. #336
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Return Authorization Module (RMA)

    clydejones I am using this module also but it shows in the information side box. I want to move it to my drop down menu under information. I am using the css_horizontal_drop_down_menu_1-5. I have ask jettrue in that thread where I need to place the code. What code do I need to move to get this to work for me . Thanks in advance.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  7. #337
    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 countrycharm View Post
    clydejones I am using this module also but it shows in the information side box. I want to move it to my drop down menu under information. I am using the css_horizontal_drop_down_menu_1-5. I have ask jettrue in that thread where I need to place the code. What code do I need to move to get this to work for me . Thanks in advance.
    I don't use this module, but if I'm not mistaken you will have to edit -

    includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php

    and add the following code where you want it.

    PHP Code:
    <?php if (DEFINE_RETURNS_STATUS <= 1) {
      <
    li><a href="<?php echo zen_href_link(FILENAME_RETURNS, '', 'SSL'); ?>"><?php echo BOX_INFORMATION_RETURNS?></a></li>
    <?php ?>

  8. #338
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by clydejones View Post
    I don't use this module, but if I'm not mistaken you will have to edit -

    includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php

    and add the following code where you want it.

    PHP Code:
    <?php if (DEFINE_RETURNS_STATUS <= 1) {
      <
    li><a href="<?php echo zen_href_link(FILENAME_RETURNS, '', 'SSL'); ?>"><?php echo BOX_INFORMATION_RETURNS?></a></li>
    <?php ?>
    Thanks again for the pointer in the right direction. You were right in the file you gave me. The code you gave me was close I just removed some to look like this. It will go to the login SSL page so it will work. Thank you again.
    PHP Code:
    <?php if (DEFINE_RETURNS_STATUS <= 1) {  ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_RETURNS);  ?>"><?php echo BOX_INFORMATION_RETURNS?></a></li>
    <?php ?>
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  9. #339
    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 countrycharm View Post
    Thanks again for the pointer in the right direction. You were right in the file you gave me. The code you gave me was close I just removed some to look like this. It will go to the login SSL page so it will work. Thank you again.
    PHP Code:
    <?php if (DEFINE_RETURNS_STATUS <= 1) {  ?>
                    <li><a href="<?php echo zen_href_link(FILENAME_RETURNS);  ?>"><?php echo BOX_INFORMATION_RETURNS?></a></li>
    <?php ?>
    Glad you got it worked out.

  10. #340
    Join Date
    Oct 2008
    Posts
    85
    Plugin Contributions
    0

    help question Re: Return Authorization Module (RMA)

    hi, i installed RMA v2.2.2, but the customer details are not automatically inserted if log in, i think i did upload all files and run sql correctly. any ideas?

 

 
Page 34 of 65 FirstFirst ... 24323334353644 ... 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