Page 50 of 65 FirstFirst ... 40484950515260 ... LastLast
Results 491 to 500 of 649
  1. #491
    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
    I wasn't sure which support thread this needed to be in (this one or the Footer Menu), so I picked this one. :)
    Try adding the following to:

    includes/languages/YOUR_TEMPLATE/english.php

    PHP Code:
    define('BOX_INFORMATION_RETURNS''Returns & Exchanges'); 

  2. #492
    Join Date
    Mar 2006
    Location
    Tennessee
    Posts
    310
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Thank you, thank you, thank you!! That fixed it.

    I knew it had to be something simple. :)
    I'll finish that project tomorrow, I've made enough mistakes today!

  3. #493
    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
    Thank you, thank you, thank you!! That fixed it.

    I knew it had to be something simple. :)
    glad to help

  4. #494
    Join Date
    Apr 2009
    Location
    Athens, Europe
    Posts
    125
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Hallo,

    I have installed the Return Authorization Module and it works great.

    The issue I would like to solve is a minor one and has to do with my store's particular configuration. However, I would be grateful if you could help me.

    Although in my store I am using the "State" field, I use it for a very different reason than it is actually intended.

    Therefore, I would like to disable the State field entry in the RMA module, despite the fact that I use it in my store.

    Is this possible?

    Thank you for your time.

    Kind regards,
    orange_juice

  5. #495
    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 orange_juice View Post
    Hallo,

    I have installed the Return Authorization Module and it works great.

    The issue I would like to solve is a minor one and has to do with my store's particular configuration. However, I would be grateful if you could help me.

    Although in my store I am using the "State" field, I use it for a very different reason than it is actually intended.

    Therefore, I would like to disable the State field entry in the RMA module, despite the fact that I use it in my store.

    Is this possible?

    Thank you for your time.

    Kind regards,
    orange_juice
    In order to do this, you will need to edit the following files and disable the error handling for that particular field.

    includes/modules/pages/returns/header_php.php

    includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php

  6. #496
    Join Date
    Apr 2009
    Location
    Athens, Europe
    Posts
    125
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by clydejones View Post
    In order to do this, you will need to edit the following files and disable the error handling for that particular field.

    includes/modules/pages/returns/header_php.php

    includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php
    Thanx!
    I commented out all lines and "if expressions" that contained the " state " issue.

    However there were two instances where I just deleted the state entries:

    includes/modules/pages/returns/header_php.php
    line 41
    Code:
    if ($zc_validate_email and !empty($reason) and !empty($name) and !empty($address) and !empty($city) and !empty($state) and !empty($country) and !empty($postcode) and !empty($order_number)) {
    includes/modules/pages/returns/header_php.php
    line 137
    Code:
    $sql = "SELECT c.customers_id, c.customers_firstname, c.customers_lastname, c.customers_email_address, c.customers_default_address_id, c.customers_telephone, ab.customers_id, ab.entry_street_address, ab.entry_city, ab.entry_postcode, ab.entry_state, ab.entry_zone_id, ab.entry_country_id, z.zone_id, z.zone_code, cn.countries_id, cn.countries_name FROM " . TABLE_CUSTOMERS . " c, " . TABLE_ADDRESS_BOOK . " ab, "  . TABLE_ZONES  . " z, " . TABLE_COUNTRIES . " cn WHERE c.customers_id = :customersID AND ab.customers_id = c.customers_id AND ab.entry_country_id = cn.countries_id";
    Seems to be working OK.

    Kind regards,
    orange_juice

  7. #497
    Join Date
    Dec 2010
    Posts
    28
    Plugin Contributions
    0

    application error Re: Return Authorization Module (RMA)

    Hi clydejones,

    I've installed this mod(RMA) on my site and I want to add a "Print" buttom next to the "Send Now" buttom, so my customer can print the "RMA form" from my website and attached it in the return box to me! Please help me write some code for it!

    Thank you for your help!

  8. #498
    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 zfw88788301 View Post
    Hi clydejones,

    I've installed this mod(RMA) on my site and I want to add a "Print" buttom next to the "Send Now" buttom, so my customer can print the "RMA form" from my website and attached it in the return box to me! Please help me write some code for it!

    Thank you for your help!
    I'm not sure exactly what it is you want to code.

    When the form is submitted, you will receive an e-mail with the information contained in the form.

  9. #499
    Join Date
    Dec 2010
    Posts
    28
    Plugin Contributions
    0

    application error Re: Return Authorization Module (RMA)

    Quote Originally Posted by clydejones View Post
    I'm not sure exactly what it is you want to code.

    When the form is submitted, you will receive an e-mail with the information contained in the form.
    Hi!clyde,

    Thank you for response! I just want you to write a print page code for me, so my customers can print the RMA form page which they can include it with the return package back to me. For return.

    Thank you!

  10. #500
    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 zfw88788301 View Post
    Hi!clyde,

    Thank you for response! I just want you to write a print page code for me, so my customers can print the RMA form page which they can include it with the return package back to me. For return.

    Thank you!
    You're duplicating functionality that should be (and is) handled by web browsers.
    Users can click the "file" in the browser tool bar and select "print" and the page will be printed.

    Adding/duplicating this functionality requires using javascript. If a user has java turned off, then of course the functionality disappears.

    I'm not saying it can't be done; I'm just pointing out that the functionality already exists and can be handled by the browser.

 

 
Page 50 of 65 FirstFirst ... 40484950515260 ... 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