Page 38 of 65 FirstFirst ... 28363738394048 ... LastLast
Results 371 to 380 of 649
  1. #371
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Return Authorization Module (RMA)

    Hi again Clyde.. As I indicated in the testimonials support thread I am having another error/strange behavior with this Returns Authorization add-on and Simple SEO.

    The problem is this: I have "Only registered customers may submit a return request" set to true. So when the user tries to create a testimonial and they are not logged in, the user is presented with the login page. (so far so good..) after they enter their login information, instead of being redirected back to the returns entry form, they are redirected back to a page that does not exist.. As a matter of fact it looks like they are being redirected to is the SWF file that is on my main page. If I turn off SEO, it all works just fine..

    I could set "Only registered customers may submit a return request" to false, but I REALLY don't want the form available to unregistered visitors.. Hope you can help me figure this out..

  2. #372
    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 DivaVocals View Post
    Hi again Clyde.. As I indicated in the testimonials support thread I am having another error/strange behavior with this Returns Authorization add-on and Simple SEO.

    The problem is this: I have "Only registered customers may submit a return request" set to true. So when the user tries to create a testimonial and they are not logged in, the user is presented with the login page. (so far so good..) after they enter their login information, instead of being redirected back to the returns entry form, they are redirected back to a page that does not exist.. As a matter of fact it looks like they are being redirected to is the SWF file that is on my main page. If I turn off SEO, it all works just fine..

    I could set "Only registered customers may submit a return request" to false, but I REALLY don't want the form available to unregistered visitors.. Hope you can help me figure this out..
    I'm not sure exactly how simple seo works so I'm afraid I can't help with this.

    You'd probably be better off checking the simple seo support thread and or contacting Yellow1912 directly.

  3. #373
    Join Date
    Sep 2009
    Location
    Liverpool
    Posts
    96
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    I have just installed this mod and can't seem to see what it does different than the normal "contact us" form.

    Can anyone help me?
    Is it supposed to generate a random Returns Authorization number to be used or something?

  4. #374
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by blackwolf View Post
    I have just installed this mod and can't seem to see what it does different than the normal "contact us" form.

    Can anyone help me?
    Is it supposed to generate a random Returns Authorization number to be used or something?
    I'm not sure what's not clear about what's different about the RA form.. The fields specific to the purpose of this form CLEARLY distinguish it from the "Contact Us" form. As for the purpose of this form I believe the highlighted section tells it all:
    This module adds a Return Authorization Request page to your store where your customer can read your returns policy and fill in a form to obtain a return authorization request. The contents of the form are emailed to the store owner.
    In short this is a form that allows your customers to REQUEST a return.. If you've installed it, the admin controls and the form itself should give you a clear idea of the purpose and functionality of the RA form.. If this is still not clear, I suggest that now that you've got it installed that you should try using the form so you can understand how it works..

  5. #375
    Join Date
    Sep 2009
    Location
    North Carolina
    Posts
    19
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Hello all, I have been searching for hours trying to figure this out

    How can I disable the (2) images (exclamation.gif & optional.gif) from displaying.

    I removed the info from return.php (see below) but there is a small broken icon appearing.

    FYI - Firefox is displaying the RMA form correctly, however, IE is not..

    MY WEBSITE: CLICK HERE

    Thank you

    define('RETURN_REQUIRED_INFORMATION', ' = Required Information<br />');
    define('RETURN_OPTIONAL_INFORMATION', '');
    define('RETURN_OPTIONAL_IMAGE','');
    define('RETURN_OPTIONAL_IMAGE_ALT', '');
    define('RETURN_OPTIONAL_IMAGE_HEIGHT', '');
    define('RETURN_OPTIONAL_IMAGE_WIDTH', '');

    define('RETURN_REQUIRED_IMAGE', 'star.gif');
    define('RETURN_REQUIRED_IMAGE_ALT', 'required information');
    define('RETURN_REQUIRED_IMAGE_HEIGHT', '');
    define('RETURN_REQUIRED_IMAGE_WIDTH', '');
    define('RETURN_WARNING_IMAGE', '');
    define('RETURN_WARNING_IMAGE_ALT', '');
    define('RETURN_WARNING_IMAGE_HEIGHT', '');
    define('RETURN_WARNING_IMAGE_WIDTH', '');

  6. #376
    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 Aplus Shoes View Post
    Hello all, I have been searching for hours trying to figure this out

    How can I disable the (2) images (exclamation.gif & optional.gif) from displaying.

    I removed the info from return.php (see below) but there is a small broken icon appearing.

    FYI - Firefox is displaying the RMA form correctly, however, IE is not..

    MY WEBSITE: CLICK HERE

    Thank you

    define('RETURN_REQUIRED_INFORMATION', ' = Required Information<br />');
    define('RETURN_OPTIONAL_INFORMATION', '');
    define('RETURN_OPTIONAL_IMAGE','');
    define('RETURN_OPTIONAL_IMAGE_ALT', '');
    define('RETURN_OPTIONAL_IMAGE_HEIGHT', '');
    define('RETURN_OPTIONAL_IMAGE_WIDTH', '');

    define('RETURN_REQUIRED_IMAGE', 'star.gif');
    define('RETURN_REQUIRED_IMAGE_ALT', 'required information');
    define('RETURN_REQUIRED_IMAGE_HEIGHT', '');
    define('RETURN_REQUIRED_IMAGE_WIDTH', '');
    define('RETURN_WARNING_IMAGE', '');
    define('RETURN_WARNING_IMAGE_ALT', '');
    define('RETURN_WARNING_IMAGE_HEIGHT', '');
    define('RETURN_WARNING_IMAGE_WIDTH', '');
    two options available ( 1 simple, 1 more involved )

    simple - create two 1 pixel transparent images and name them ( exclamation.gif , optional.gif )
    upload these new images to includes/templates/YOUR_TEMPLATE/images

    more involved - open includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php

    find each src reference to ( exclamation.gif , optional.gif ) and delete them.
    Code:
     . zen_image($template->get_template_dir(RETURN_OPTIONAL_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . RETURN_OPTIONAL_IMAGE, RETURN_OPTIONAL_IMAGE_ALT, RETURN_OPTIONAL_IMAGE_WIDTH, RETURN_OPTIONAL_IMAGE_HEIGHT)
    
     . zen_image($template->get_template_dir(RETURN_WARNING_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . RETURN_WARNING_IMAGE, RETURN_WARNING_IMAGE_ALT, RETURN_WARNING_IMAGE_WIDTH, RETURN_WARNING_IMAGE_HEIGHT)

  7. #377
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by DivaVocals View Post
    Hi again Clyde.. As I indicated in the testimonials support thread I am having another error/strange behavior with this Returns Authorization add-on and Simple SEO.

    The problem is this: I have "Only registered customers may submit a return request" set to true. So when the user tries to create a testimonial and they are not logged in, the user is presented with the login page. (so far so good..) after they enter their login information, instead of being redirected back to the returns entry form, they are redirected back to a page that does not exist.. As a matter of fact it looks like they are being redirected to is the SWF file that is on my main page. If I turn off SEO, it all works just fine..

    I could set "Only registered customers may submit a return request" to false, but I REALLY don't want the form available to unregistered visitors.. Hope you can help me figure this out..
    Make sure you have cleared your simple seo cache. I have simple seo install along with this add-on with no problems. I know what you are talking about, maybe yellow can give you a hint. You could try adding login to your Exclude list in simple seo configuration.
    Sorry clydejones for going off topic.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  8. #378
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Return Authorization Module (RMA)

    Thanks.. actually did all of this, and still no joy.. but no worries.. I installed a different SEO, and all is right with the world.. Sorry Clyde.. no more hijacking from me!
    Quote Originally Posted by countrycharm View Post
    Make sure you have cleared your simple seo cache. I have simple seo install along with this add-on with no problems. I know what you are talking about, maybe yellow can give you a hint. You could try adding login to your Exclude list in simple seo configuration.
    Sorry clydejones for going off topic.

  9. #379
    Join Date
    Sep 2009
    Location
    North Carolina
    Posts
    19
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by clydejones View Post
    two options available ( 1 simple, 1 more involved )

    simple - create two 1 pixel transparent images and name them ( exclamation.gif , optional.gif )
    upload these new images to includes/templates/YOUR_TEMPLATE/images

    more involved - open includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php

    find each src reference to ( exclamation.gif , optional.gif ) and delete them.
    Code:
     . zen_image($template->get_template_dir(RETURN_OPTIONAL_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . RETURN_OPTIONAL_IMAGE, RETURN_OPTIONAL_IMAGE_ALT, RETURN_OPTIONAL_IMAGE_WIDTH, RETURN_OPTIONAL_IMAGE_HEIGHT)
    
     . zen_image($template->get_template_dir(RETURN_WARNING_IMAGE, DIR_WS_TEMPLATE, $current_page_base,'images'). '/' . RETURN_WARNING_IMAGE, RETURN_WARNING_IMAGE_ALT, RETURN_WARNING_IMAGE_WIDTH, RETURN_WARNING_IMAGE_HEIGHT)

    Thank you for your help clydejones....I was able to fix the problem

  10. #380
    Join Date
    Dec 2009
    Posts
    4
    Plugin Contributions
    0

    Default Re: Return Authorization Module (RMA)

    Quote Originally Posted by ScrapbookSupplies View Post
    Hi Clyde,

    After going over it and over it and over it again I finally found the problem for real this time. I'm a little slow but at least I know where my issue is, fixing it is another story, am hoping you can shed some advice on it.

    I finally re-ran the SQL query, and to my surprise it did not give me an error, so of course I felt silly at first, thinking I must have forgotten to run it the first time - but that didn't fix the problem. Then something told me to look at the dB thru MySQL, and I could not find any rows with the word "return" in them. So, I ran the query directly in the phpAdmin screen and got a #1146 Error - - Table 'scrapcha_zencart.configuration_group' doesn't exist. I will paste the exact error below, along with a copy of the query below. I think the only thing that I need to do is change the name from configuration_group_id to just configuration_group, but not being very familiar with My SQL, I am afraid to make any kind of change to it on my own. Also, we have a configuration_group but no configuration_group_title.

    Can you tell? Please?



    SQL Query ERROR:





    ATTEMPTED QUERY:



    Thank you so much for your help!!
    New to this mod, but I too am getting this same error from phpMyAdmin. If I copy/paste into SQL Query, (inside of admin) I get the pink bar at top with "failed".

    Any ideas?

    Thanks...

 

 
Page 38 of 65 FirstFirst ... 28363738394048 ... 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