Re: Return Authorization Module (RMA)
Quote:
Originally Posted by
khopek
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.
If it not showing up in the define text editor, try this and see what happens; make a copy of define_returns.php and put in includes/languages/english/html_includes then up load it to the server. now check the define text editor.
Quote:
Originally Posted by
khopek
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:
The mod send an e-mail to the customer and to the store owner.
Re: Return Authorization Module (RMA)
Future support requests for this mod should be posted here:
www.zen-cart.com/forum/showthread.php?t=54487
Re: Return Authorization mod issues...
Return Authorization 2.0 is available in the downloads section.
Any future support requests should be posted here:
http://www.zen-cart.com/forum/showthread.php?t=54487www.zen-cart.com/forum/showthread.php?t=54487
Re: Return Authorization mod issues...
clydejones, the link is broken...
The email send to admin work well, but it's not formatted; the email send to customer show only this (html email):
EMAIL_GREET_NONEEMAIL_WELCOMEEMAIL_TEXTEMAIL_CONTACTEMAIL_WARNING
and no other
Re: Return Authorization mod issues...
Sorry for my last post: I don't have seen the 6 page...
Re: Return Authorization Module (RMA)
Hi,
thank you so much for this module - it works beautifully.
However, I am not sure whether it's just me, but I can't find a COUNTRY field:sleepy:!!! Is that correct? I tried to simply add it. That worked for the form, but - of course - the field is not filled (if logged in) and not sent in the email. :no:
Can someone help me with this? It would be absolutely GREAT (but not absolutely necessary, as I assume that if someone wants to return something they will provide the correct information!), if there was a dropdown box for the countries and the corresponding states!
HELP - PLEASE
Re: Return Authorization Module (RMA)
I didn't include a country field because you will already have the complete address on the customer's order.
Re: Return Authorization mod issues...
Quote:
Originally Posted by
clydejones
Return Authorization 2.0 is available in the downloads section.
It's in the "Other" section, would be good to move to the "Admin" section of the Downloads IMHO
Thanks for this great mod, super :smile:
Re: Return Authorization Module (RMA)
Quote:
Originally Posted by
clydejones
I didn't include a country field because you will already have the complete address on the customer's order.
I agree that - normally - that is correct. But, what if the customer has moved or wants the return to be sent to a different address?
Re: Return Authorization Module (RMA)
I would like to line-up the postal code input field and the drop down menu for reason to be under the respective labels (like the rest of the form).
Code:
<label class="inputLabel" for="postcode"><?php echo ENTRY_POST_CODE; ?></label>
<?php echo zen_draw_input_field('postcode', '', zen_set_field_length(TABLE_ADDRESS_BOOK, 'entry_postcode', '40') . ' id="postcode"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?>
</fieldset>
<br class="clearBoth" />
Code:
<label class="inputLabel" for="action"><?php echo ENTRY_ACTION; ?></label>
<select name="action">
<?php echo '<option value="' . ENTRY_ACTION_REFUND . '">' . ENTRY_ACTION_REFUND . '</option>' ; ?>
<?php echo '<option value="' . ENTRY_ACTION_REPLACE . '">' . ENTRY_ACTION_REPLACE . '</option>' ;?>
</select>
</fieldset>
<br class="clearBoth" />
thanks