Page 17 of 17 FirstFirst ... 7151617
Results 161 to 168 of 168
  1. #161
    Join Date
    May 2018
    Location
    Melbourne, Australia
    Posts
    24
    Plugin Contributions
    0

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Someone had this problem in an earlier post:

    "TEXT_ACCOUNT_INFO_RETURNS_TEXT_LINK_HEADER
    If you wish to return any of the above items to us, please do not send any items before obtaining a Return Authorization Number. TEXT_DEFINE_BUTTON_LINK2TEXT_DEFINE_BUTTON_LINK3"

    I have exactly the same problem, and have checked that all the files are in the correct places. The problem happens explicitly on the Checkout Success page, but works correctly in the Account History page.

    The problem can't be related to the defines, as it operates correctly on the Accounts history page, but not on checkout success.

    Any help would be appreciated.
    Last edited by donw; 18 Aug 2019 at 08:17 AM. Reason: need to place elsewhere.

  2. #162
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,684
    Plugin Contributions
    123

    Default Re: Flexible Return Authorization (RMA) Support Thread

    I answered this question in another thread:
    https://www.zen-cart.com/showthread....15#post1360715
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  3. #163
    Join Date
    Jan 2018
    Posts
    165
    Plugin Contributions
    4

    Default Re: Flexible Return Authorization (RMA) Support Thread

    I uploaded a new version that fixes this but not approved yet I guess. However, here is the github repo that fixes this issue.

    https://github.com/tmccaff/Zencart-Return-Authorization

  4. #164
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    9,684
    Plugin Contributions
    123

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Thanks for doing this. It has been approved.
    That Software Guy. My Store: Zen Cart Modifications
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  5. #165
    Join Date
    May 2018
    Location
    Melbourne, Australia
    Posts
    24
    Plugin Contributions
    0

    Default Re: Flexible Return Authorization (RMA) Support Thread

    Thanks for that, it fixed the problem. Was going to ask why it hadn't been fixed , until I saw the posts below.

  6. #166
    Join Date
    Jan 2018
    Posts
    165
    Plugin Contributions
    4

    Default Re: Flexible Return Authorization (RMA) Support Thread

    New version uploaded which corrected the following

    1. Corrected PHP Notice account-history-info (virtual) YOUR_TEMPLATE/tpl_account_history_info.php
    2. Removed double heading from checkout-success page YOUR_TEMPLATE/tpl_account_history_info.php

    New Version 1.6a, once it's approved or get it at github repo.

    https://www.zen-cart.com/downloads.php?do=file&id=1692

  7. #167
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,296
    Plugin Contributions
    22

    Default Re: Flexible Return Authorization (RMA) Support Thread

    I have the later version - and still have the problems with the defines. No matter what I've tried this problem persists - even pulled those defines into the core language files. Someone else said these fixes were the solution. The ZC version is 1.5.7b.
    The full-time Zen Cart Guru. WizTech4ZC.com

  8. #168
    Join Date
    May 2006
    Location
    Gardiner, Maine
    Posts
    2,296
    Plugin Contributions
    22

    Default Re: Flexible Return Authorization (RMA) Support Thread

    He had put quotes around the problem text defines in returns_request. Remove them and it works. PHP 7 niggling bits continue to provide joy!
    This at the end of the file:
    PHP Code:
    <?php if (DEFINE_BUTTON_LINK == '0') { ?> <div class="rmaRequestButton"><h4><?php echo 'TEXT_ACCOUNT_INFO_RETURNS_BUTTON_HEADER'?></h4><?php echo '<a href="' .
    zen_href_link(FILENAME_RETURNS, (isset($_GET['page']) ? 'page=' .
    $_GET['page'] . '&' '') . 'order_id=' $_GET['order_id'], 'SSL') . '">'
    zen_image_button(BUTTON_IMAGE_SUBMITBUTTON_SUBMIT_ALT) . '</a>'?></div> <?php } else { ?> <div class="rmaRequestButton"><h4><?php echo 'TEXT_ACCOUNT_INFO_RETURNS_TEXT_LINK_HEADER'?></h4><?php echo 'TEXT_DEFINE_BUTTON_LINK'?>&nbsp;&nbsp;<?php echo '<a href="' zen_href_link(FILENAME_RETURNS,
    (isset(
    $_GET['page']) ? 'page=' $_GET['page'] . '&' '') . 'order_id=' .
    $_GET['order_id'], 'SSL') . '">' 'TEXT_DEFINE_BUTTON_LINK2' '</a>'?><?php echo 'TEXT_DEFINE_BUTTON_LINK3'?></div> <?php ?>
    Change to this:
    PHP Code:
    <?php if (DEFINE_BUTTON_LINK == '0') { ?> <div class="rmaRequestButton"><h4><?php echo TEXT_ACCOUNT_INFO_RETURNS_BUTTON_HEADER?></h4><?php echo '<a href="' .
    zen_href_link(FILENAME_RETURNS, (isset($_GET['page']) ? 'page=' .
    $_GET['page'] . '&' '') . 'order_id=' $_GET['order_id'], 'SSL') . '">'
    zen_image_button(BUTTON_IMAGE_SUBMITBUTTON_SUBMIT_ALT) . '</a>'?></div> <?php } else { ?> <div class="rmaRequestButton"><h4><?php echo 'TEXT_ACCOUNT_INFO_RETURNS_TEXT_LINK_HEADER'?></h4><?php echo TEXT_DEFINE_BUTTON_LINK?>&nbsp;&nbsp;<?php echo '<a href="' zen_href_link(FILENAME_RETURNS,
    (isset(
    $_GET['page']) ? 'page=' $_GET['page'] . '&' '') . 'order_id=' .
    $_GET['order_id'], 'SSL') . '">' TEXT_DEFINE_BUTTON_LINK2 '</a>'?><?php echo TEXT_DEFINE_BUTTON_LINK3?></div> <?php ?>
    Also if you end up with a grey screen over the returns success? It's a css issue if you don't upload the css files.
    The full-time Zen Cart Guru. WizTech4ZC.com

 

 
Page 17 of 17 FirstFirst ... 7151617

Similar Threads

  1. v154 Flexible Footer Menu Multilingual [Support Thread]
    By rbarbour in forum All Other Contributions/Addons
    Replies: 128
    Last Post: 6 Sep 2023, 10:30 PM
  2. Return Authorization Module (RMA)
    By voltage in forum All Other Contributions/Addons
    Replies: 648
    Last Post: 3 Jun 2015, 09:37 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