saderogba 0 Posted July 8, 2018 I installed this module and still trying to get it to work. On line 624 of return configuration.php there is this print_r($terms); I suspect this line needs to be removed. Can someone please help confirm? Thanks. Share this post Link to post Share on other sites
saderogba 0 Posted July 8, 2018 Also when I clicked on Returned Products, I get this error message: Fatal error: Call to a member function register() on null in ~/returns.php on line 17 Any input will be greatly appreciated... Share this post Link to post Share on other sites
♥frankl 277 Posted July 8, 2018 10 minutes ago, saderogba said: print_r($terms); I suspect this line needs to be removed. Yes 4 minutes ago, saderogba said: Fatal error: Call to a member function register() on null in ~/returns.php on line 17 https://forums.oscommerce.com/topic/411460-rma-returns-system-for-osc234bs/?do=findComment&comment=1767564 Let's make things easier for new osCommerce users http://forums.oscommerce.com/topic/402638-discussion-about-hard-coded-database-tables/?p=1718900 Getting there with osCommerce 2.4! Share this post Link to post Share on other sites
saderogba 0 Posted July 11, 2018 Thanks. I have completed the install process but I am not seeing the Request a Return button on account_history page. Please what do I need to check? Share this post Link to post Share on other sites
♥frankl 277 Posted July 12, 2018 Check to ensure you have installed the header tag module and the order status corresponds with the status you have set for returns. Let's make things easier for new osCommerce users http://forums.oscommerce.com/topic/402638-discussion-about-hard-coded-database-tables/?p=1718900 Getting there with osCommerce 2.4! Share this post Link to post Share on other sites
YePix 14 Posted August 23, 2018 Hello people, ht_returns.php does not respond. The button does not appear in the account_history_info.php no matter what status the order has Share this post Link to post Share on other sites
♥14steve14 495 Posted September 28, 2018 Just installed this with no problems, but did notice that there is nothing in the instructions unless I missed something, about installing the header tag module. Until that was installed nothing worked. Now all I have to do is to hope customers use it. REMEMBER BACKUP, BACKUP AND BACKUP Get the latest Responsive osCommerce CE (community edition) here It's very easy to over complicate what are simple things in life Share this post Link to post Share on other sites
YePix 14 Posted September 28, 2018 returns_configuration.php row 370, 371 reset($orders_status_id); while (list(, $value) = each($orders_status_id)) { change: // reset($orders_status_id); // while (list(, $value) = each($orders_status_id)) { foreach ($orders_status_id as $value) { Share this post Link to post Share on other sites
greasemonkey 182 Posted October 5, 2018 (edited) @frankl I've created a dashboard module for returns... if interested I can share here, or with you... or upload as a separate addon (prob not a good idea). Edited October 5, 2018 by greasemonkey text Share this post Link to post Share on other sites
♥frankl 277 Posted October 8, 2018 On 10/6/2018 at 2:07 AM, greasemonkey said: @frankl I've created a dashboard module for returns... if interested I can share here, or with you... or upload as a separate addon (prob not a good idea). That would be cool, thanks! Let's make things easier for new osCommerce users http://forums.oscommerce.com/topic/402638-discussion-about-hard-coded-database-tables/?p=1718900 Getting there with osCommerce 2.4! Share this post Link to post Share on other sites
greasemonkey 182 Posted October 9, 2018 Here you go @frankl Should work with any version of https://apps.oscommerce.com/m2hDP&rma-returns-system-for-osc2-3-4bs Just drop in files, navigate to admin -> modules -> dashboard then + Install Modules in the top right corner and install the Returns Modules. Installs a dashboard module displaying a list of the 6 most recently modified returns on admin/index.php. ram-system-dashboard-module.zip 1 valquiria23 reacted to this Share this post Link to post Share on other sites
greasemonkey 182 Posted January 30 Hey @frankl I hope all is well. Just noticing a flaw in your RMA system - well actually a flaw with tep_draw_radio_field I presume. Do you have any tricks to return more than one item on a single RMA - as tep_draw_radio_field only allows 1 selection from a list. Removing, or using a unique "name" for each in the list will not pass it would seem... but I'm no expert. Maybe a new radio field function is required - similar to what some have done with radio buttons and multiple attributes???? Scott Share this post Link to post Share on other sites
greasemonkey 182 Posted February 1 Ok, trying to figure this out on my own in @frankl absence..... it would seem we need to use a checkbox_field in place of a radio. Now just trying to figure out how to pass the variables selected. Share this post Link to post Share on other sites
Kevin.Dallas 1 Posted October 22 I am getting a error in returns.php?rID=3&oID=&action=edit [22-Oct-2019 12:37:22 America/Los_Angeles] PHP Fatal error: Cannot redeclare class hook_admin_returns_coupon_send in public_html/includes/hooks/admin/returns/coupon_send.php on line 3 ----------------------------------coupon_send.php------------------------- <?php class hook_admin_returns_coupon_send { function listen_returnsAction() { if ( !class_exists('hook_admin_returns_coupon_action') ) { include(DIR_FS_CATALOG . 'includes/modules/hooks/admin/returns/returns_coupon_action.php'); } $hook = new hook_admin_returns_coupon_action(); return $hook->execute(); } function listen_returnsTab() { if ( !class_exists('hook_admin_returns_coupon') ) { include(DIR_FS_CATALOG . 'includes/modules/hooks/admin/returns/returns_coupon.php'); } $hook = new hook_admin_returns_coupon(); return $hook->execute(); } } ?> running edge php 5.6 Share this post Link to post Share on other sites
kgtee 30 Posted October 23 Hi @Kevin.Dallas, I work around this issue by encapsulating the class with: Quote if ( !class_exists('hook_admin_returns_coupon_send') ) { ..... } This works for me but I am not sure it is the right thing to do. I hope @frankl will throw us some light. This RMA add-on is one of the most useful apps I have ever seen. Thanks to @frankl! Share this post Link to post Share on other sites
Kevin.Dallas 1 Posted October 23 12 hours ago, kgtee said: Hi @Kevin.Dallas, I work around this issue by encapsulating the class with: This works for me but I am not sure it is the right thing to do. I hope @frankl will throw us some light. This RMA add-on is one of the most useful apps I have ever seen. Thanks to @frankl! i am still getting the same error, the problem is in here, not in the hook includes/modules/hooks/admin/returns/returns_coupon_action.php Share this post Link to post Share on other sites
Kevin.Dallas 1 Posted November 7 On 10/22/2019 at 8:56 PM, kgtee said: Hi @Kevin.Dallas, I work around this issue by encapsulating the class with: This works for me but I am not sure it is the right thing to do. I hope @frankl will throw us some light. This RMA add-on is one of the most useful apps I have ever seen. Thanks to @frankl! hi kgtee, do you have any issues when you apply coupon, coupon is not being auto created in discount_codes.php Share this post Link to post Share on other sites
kgtee 30 Posted November 7 Hi @Kevin.Dallas, I am not using any credit coupon system. Sorry as I am not able to advise you on this. Share this post Link to post Share on other sites
Kevin.Dallas 1 Posted November 7 1 minute ago, kgtee said: Hi @Kevin.Dallas, I am not using any credit coupon system. Sorry as I am not able to advise you on this. no problem, i am almost getting it fixed there are so many issues with a addons Share this post Link to post Share on other sites