Zen Cart Logo
Forums / All Other Contributions/Addons / Return Authorization Module (RMA)

Return Authorization Module (RMA)

Views: 109,994

Results 141 to 160 of 644
10 May 2007, 1:05 AM
#141
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Return Authorization Module (RMA)

helpme:

Worked great!! Thanks a million!

Glad to help

17 May 2007, 12:27 PM
#142
helpme avatar

helpme

Totally Zenned

Join Date:
Apr 2007
Posts:
632
Plugin Contributions:
0

Re: Return Authorization Module (RMA)

I thought I had this working, but I just went to finish setting it up and the only thing I can find in my admin for it is under admin/config Am I missing something, I thought I could find in layout boxes, but I don't see it.....I feel like I am looking right at it but where??? I was going to add it to the drop down menu however I looked at doing that and I don't know anything about

then a menu item to
includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php

thanks for your help.

17 May 2007, 12:53 PM
#143
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

helpme:

I thought I had this working, but I just went to finish setting it up and the only thing I can find in my admin for it is under admin/config Am I missing something, I thought I could find in layout boxes, but I don't see it.....I feel like I am looking right at it but where??? I was going to add it to the drop down menu however I looked at doing that and I don't know anything about

then a menu item to
includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php

thanks for your help.

This is an extra page and the only reference to it in admin is in admin -> configuration.

As far as adding to the drop down menu you have to edit two files:

includes/languages/english/extra_definitions/YOUR_TEMPLATE/headermenu.php

add a new define statement for the return authorization page

the other file to edit is
includes/templates/YOUR_TEMPLATE/common/tpl_drop_menu.php

17 May 2007, 12:58 PM
#144
helpme avatar

helpme

Totally Zenned

Join Date:
Apr 2007
Posts:
632
Plugin Contributions:
0

Re: Return Authorization Module (RMA)

Okay, so I have a really stupid question, and I apoligize for it now, but how do my customers find the page unless I put it in the drop down menu? And if I am not understanding and the customer doesn't actually use this, I do, how do I find it? I am really sorry, my day is not starting right!

17 May 2007, 1:57 PM
#145
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

helpme:

Okay, so I have a really stupid question, and I apoligize for it now, but how do my customers find the page unless I put it in the drop down menu? And if I am not understanding and the customer doesn't actually use this, I do, how do I find it? I am really sorry, my day is not starting right!

from the readme.txt of the contribution:

To add the link in your Information sidebox, copy the following code and add it in the desired location in includes/modules/sideboxes/YOUR_TEMPLATE/information.php:

if (DEFINE_RETURNS_STATUS <= 1) {
$information[] = '<a href="' . zen_href_link(FILENAME_RETURNS, '', 'SSL') . '">' . BOX_INFORMATION_RETURNS . '</a>';
}

(If you want it in the more_information sidebox, change $information[] to $more_information[] and add it to includes/modules/sideboxes/YOUR_TEMPLATE/more_information.php)

17 May 2007, 2:09 PM
#146
helpme avatar

helpme

Totally Zenned

Join Date:
Apr 2007
Posts:
632
Plugin Contributions:
0

Re: Return Authorization Module (RMA)

Thanks, sorry I missed that spot in the read me.txt

18 May 2007, 6:27 PM
#147
voltage avatar

voltage

Totally Zenned

Join Date:
Apr 2005
Location:
Houston, TX
Posts:
1,356
Plugin Contributions:
1

Re: Return Authorization Module (RMA)

Hi ClydeJones

Thanks for the great mod. I am using it a as a template to create a different form and I have one question. How can I modify it to send an email to a different email address? Can it be hard coded somewhere?

Thank!

18 May 2007, 7:27 PM
#148
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

voltage:

Hi ClydeJones

Thanks for the great mod. I am using it a as a template to create a different form and I have one question. How can I modify it to send an email to a different email address? Can it be hard coded somewhere?

Thank!

You can probably use a define statement in includes/languages/english/YOUR_TEMPLATE/returns.php

define('EMAIL_TO', '[email protected]');

then in includes/modules/pages/returns/header_php.php

find:

$send_to_email = EMAIL_FROM;

and change it to:

$send_to_email = EMAIL_TO;
22 May 2007, 7:12 PM
#149
voltage avatar

voltage

Totally Zenned

Join Date:
Apr 2005
Location:
Houston, TX
Posts:
1,356
Plugin Contributions:
1

Re: Return Authorization Module (RMA)

Has anybody had problems with the customer information prepopulate? I have installed this mod (and a modified version of it) and in both cases, the name and email are correct, but it pulls the address info for the customer with the id = 1 in every case.

Any ideas?

(Just in case I wasnt clear, lets say the first customer to sign up had the address:

7384 Green St
Las Vegas, NV 89106

No matter which customer is logged in, the above address is prepopulated.

22 May 2007, 11:12 PM
#150
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

voltage:

Has anybody had problems with the customer information prepopulate? I have installed this mod (and a modified version of it) and in both cases, the name and email are correct, but it pulls the address info for the customer with the id = 1 in every case.

Any ideas?

(Just in case I wasnt clear, lets say the first customer to sign up had the address:

7384 Green St
Las Vegas, NV 89106

No matter which customer is logged in, the above address is prepopulated.

Try this fix: I've checked it on each address I have and the come up correct.

[Attachment no longer available]

Just unzip the and upload the includes folder to your server.

23 May 2007, 12:07 AM
#151
voltage avatar

voltage

Totally Zenned

Join Date:
Apr 2005
Location:
Houston, TX
Posts:
1,356
Plugin Contributions:
1

Re: Return Authorization Module (RMA)

Sweet! That fix literally had my name all over it! :D

BTW, what did you change? It worked like a charm.

Thanks

clydejones:

Try this fix: I've checked it on each address I have and the come up correct.

[Attachment no longer available]

Just unzip the and upload the includes folder to your server.

23 May 2007, 12:50 AM
#152
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

voltage:

Sweet! That fix literally had my name all over it! :D

BTW, what did you change? It worked like a charm.

Thanks

I had to re-work the sql statement that calls the address information.

23 May 2007, 1:45 AM
#153
voltage avatar

voltage

Totally Zenned

Join Date:
Apr 2005
Location:
Houston, TX
Posts:
1,356
Plugin Contributions:
1

Re: Return Authorization Module (RMA)

I think the prepopulate feature is really slick. How would I go about doing the same thing with the contact us page?

Thanks again for your help

23 May 2007, 3:13 AM
#154
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

voltage:

I think the prepopulate feature is really slick. How would I go about doing the same thing with the contact us page?

Thanks again for your help
The contact us page does this by default.

29 May 2007, 10:31 PM
#155
svanis avatar

svanis

Zen Follower

Join Date:
May 2005
Location:
Sweden
Posts:
145
Plugin Contributions:
0

Re: Return Authorization Module (RMA)

So has anyone zipped this one up and made it an official contribution or would one have to go through the entire thread and do the fixes..?

30 May 2007, 12:20 AM
#156
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

Svanis:

So has anyone zipped this one up and made it an official contribution or would one have to go through the entire thread and do the fixes..?
Most recent version is available in the downloads section (Other Modules)

5 Jun 2007, 4:47 PM
#157
helpme avatar

helpme

Totally Zenned

Join Date:
Apr 2007
Posts:
632
Plugin Contributions:
0

Re: Return Authorization Module (RMA)

Clyde,
I am not sure what happened, but the link in my sidebox no longer works. It is missing the / after my url before the page name, I uninstalled, and reinstalled and it didn't fix it. Where do I fix this? Thanks!

> http://www.mommyandbabyessentials.comindex.php/?main_page=returns

5 Jun 2007, 5:04 PM
#158
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

helpme:

Clyde,
I am not sure what happened, but the link in my sidebox no longer works. It is missing the / after my url before the page name, I uninstalled, and reinstalled and it didn't fix it. Where do I fix this? Thanks!

This is how the link should appear in the information sidebox:

  if (DEFINE_RETURNS_STATUS <= 1) {
  $information[] = '<a href="' . zen_href_link(FILENAME_RETURNS, '', 'SSL') . '">' . BOX_INFORMATION_RETURNS . '</a>';
  }
5 Jun 2007, 5:20 PM
#159
helpme avatar

helpme

Totally Zenned

Join Date:
Apr 2007
Posts:
632
Plugin Contributions:
0

Re: Return Authorization Module (RMA)

I just checked the link and it is correct. I even copied, pasted and uploaded it again just to make sure, but no change.

6 Jun 2007, 2:33 PM
#160
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Return Authorization Module (RMA)

helpme:

I just checked the link and it is correct. I even copied, pasted and uploaded it again just to make sure, but no change.

You might want to uninstall/reinstall the mod.

first) manually delete these files:
includes/extra_datafiles/returns_filenames.php
includes/languages/english/extra_definitions/YOUR_TEMPLATE/returns_defines.php
includes/languages/english/YOUR_TEMPLATE/returns.php
includes/languages/english/html_includes/define_returns.php
includes/languages/english/html_includes/YOUR_TEMPLATE/define_returns.php
includes/modules/pages/returns
includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php
includes/templates/YOUR_TEMPLATE/css/returns.css

second) reinstall the mod.