Re: Return Authorization Module (RMA)
To fix this error, open includes/modules/pages/returns/header_php.php go to line 71 and delete the "}". save the file and then upload to your server.
You should be able to create an internal link in EZ pages. make sure the sidebox option is checked and give it a sort order.
Re: Return Authorization Module (RMA)
Quote:
Originally Posted by
clydejones
To fix this error, open includes/modules/pages/returns/header_php.php go to line 71 and delete the "}". save the file and then upload to your server.
You should be able to create an internal link in EZ pages. make sure the sidebox option is checked and give it a sort order.
awesome it's all fixed! However, when I go to the Returns page it says STORE_PHONE up in the upper left eventhough my store phone number is already displayed via the settings in admin. Also, I'm not sure how to change the "returns sample text" as I have no Returns page in my define pages editor.
Thanks!
Re: Return Authorization Module (RMA)
In includes/templates/YOUR_TEMPLATE/tpl_returns_default.php
at around line 12 find this line of code:
<address><?php echo nl2br(STORE_NAME_ADDRESS . '<br />' . STORE_PHONE); ?></address>
delete everything in red. Save the file and upload to your server.
check in includes/languages/english/html_includes/YOUR_TEMPLATE/define_returns.php
You can edit the file in a text editor, save your changes and upload to your server.
double check the mod download and make sure you did actually upload includes/languages/english/html_includes/YOUR_TEMPLATE/define_returns/php
Make sure you change YOUR_TEMPLATE to the same name as your custom template.
Re: Return Authorization 2.0
G'day,
I've installed this mod and managed to get most of it working with Zen Cart 1.3.5. (Needed to remove some SSL related stuff.)
However, when I actually submit a Return Request, the email sent to the end user just contains the text...
Quote:
EMAIL_GREET_NONEEMAIL_WELCOMEEMAIL_TEXTEMAIL_CONTACTEMAIL_WARNING
The email sent to the store owner is just fine though.
Any ideas?
Best Regards, Lloyd Borrett.
Re: Return Authorization 2.0
Its a mess up in the define files:
Just unzip the attachment, rename the YOUR_TEMPLATE folder to match your custom folder then upload the entire includes folder to your server
Attachment 1212
Re: Return Authorization 2.0
Thanks, Clyde. That fixed it.
Though I've just noticed that the email sent to the store owner starts with the line "STORE_TEXT".
I suspect that this is another missing language file value.
Any ideas?
Also, there is no space between "Reason:" and the text box details in the store owners email message, which looks a bit odd.
And to be consistent, perhaps there should be one line, "Action Requested: Refund" intead of two lines.
Best Regards, Lloyd Borrett.
Re: Return Authorization 2.0
Lloyd,
add the following code to includes/languages/english/YOUR_TEMPLATE/returns.php
PHP Code:
define('STORE_TEXT', 'The following request has been received:<br />');
save the file and upload to your server.
This should fix the that problem.
In includes/modules/pages/returns/header_php.php
find the following code:
PHP Code:
"Action Requested" . "\n" .
$action . "\n" .
'------------------------------------------------------' . "\n" .
"Reason:" . $reason . "\n" .
'------------------------------------------------------' . "\n" .
replace the entire block with the following:
PHP Code:
"Action Requested:" . "\t" . $action . "\n" .
'------------------------------------------------------' . "\n" .
"Reason:" . "\t" . $reason . "\n" .
'------------------------------------------------------' . "\n" .
Save the file and upload to your server.
Re: Return Authorization 2.0
Thanks Clyde,
I'd already worked out the second part.
I'm not sure the <br /> is needed on the STORE_TEXT either.
Best Regards, Lloyd Borrett.
Re: Return Authorization Module (RMA)
So will the Returns text just not show up in the Define Text Editor?
The files is uploaded, just doesn't show in Define Text Editor.
Re: Return Authorization Module (RMA)
With this mod, when the customer inputs the info and clicks send, Is it sending it to my email address? Sorry for all the questions! :laugh: