Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 37
  1. #21
    Join Date
    Sep 2013
    Location
    Honolulu, HI
    Posts
    88
    Plugin Contributions
    0

    Default Re: Setting an attribute to be 'Required' does not work.

    Thanks for the advice on the drop-downs. I'll be implementing that everywhere.

    Quote Originally Posted by Ajeh View Post
    Are you using any addons for Attributes?
    I'm using Flexible Attrbibutes.

    I was using Dynamic Price Updater for a little bit but turned it off and haven't used it since.

  2. #22
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Setting an attribute to be 'Required' does not work.

    Is there an On/off switch on this Flexible Attributes that you are using to see if your attributes work as they should by default without it? More or less I am looking for a way to test if there is something on your settings or template causing this or if this addon is causing problems and if you need to look into a solution for this addon ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  3. #23
    Join Date
    Sep 2013
    Location
    Honolulu, HI
    Posts
    88
    Plugin Contributions
    0

    Default Re: Setting an attribute to be 'Required' does not work.

    Quote Originally Posted by Ajeh View Post
    Is there an On/off switch on this Flexible Attributes that you are using to see if your attributes work as they should by default without it? More or less I am looking for a way to test if there is something on your settings or template causing this or if this addon is causing problems and if you need to look into a solution for this addon ...
    A way to just turn off Flexible Attributes doesn't jump out at me. It was one of the first add-ons I installed and I remember the required attributes working the way they should after I installed it but I did change a few settings...I'll look through the readme, see how to turn it off.

  4. #24
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Setting an attribute to be 'Required' does not work.

    Could you go to phpMyAdmin and in your table:
    configuration

    do a search for the configuration_key
    TEXT_PREFIX

    What is the:
    configuration_value

    on that?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  5. #25
    Join Date
    Sep 2013
    Location
    Honolulu, HI
    Posts
    88
    Plugin Contributions
    0

    Default Re: Setting an attribute to be 'Required' does not work.

    Quote Originally Posted by Ajeh View Post
    Could you go to phpMyAdmin and in your table:
    configuration

    do a search for the configuration_key
    TEXT_PREFIX

    What is the:
    configuration_value

    on that?
    I don't appear to have a TEXT_PREFIX in that table.

  6. #26
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Setting an attribute to be 'Required' does not work.

    You should ... check one more time for:
    Code:
    SELECT * FROM configuration WHERE configuration_key LIKE 'TEXT_PREFIX';
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  7. #27
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Setting an attribute to be 'Required' does not work.

    NOTE: If you still cannot find it, run this in the SQL:
    Code:
    INSERT INTO configuration (configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function) VALUES ('Text prefix', 'TEXT_PREFIX', 'txt_', 'Prefix used to differentiate between text option values and other option values', 0, NULL, now(), now(), NULL, NULL);
    and then see if things start working ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  8. #28
    Join Date
    Sep 2013
    Location
    Honolulu, HI
    Posts
    88
    Plugin Contributions
    0

    Default Re: Setting an attribute to be 'Required' does not work.

    Quote Originally Posted by Ajeh View Post
    You should ... check one more time for:
    Code:
    SELECT * FROM configuration WHERE configuration_key LIKE 'TEXT_PREFIX';
    I've attached a screen capture of the result in case I'm not doing this correctly, but it seems like I don't have a TEXT_PREFIX?

    Name:  zentextprefixerror.jpg
Views: 102
Size:  42.9 KB

  9. #29
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Setting an attribute to be 'Required' does not work.

    You win not there ... go ahead and add it and see what happens ...
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

  10. #30
    Join Date
    Sep 2003
    Location
    Ohio
    Posts
    69,402
    Plugin Contributions
    6

    Default Re: Setting an attribute to be 'Required' does not work.

    Also, check for these settings ...
    Search for the configuration_key
    PRODUCTS_OPTIONS_TYPE_SELECT
    UPLOAD_PREFIX

    If those are missing, you can fix them with:
    Code:
    INSERT INTO `configuration` VALUES ('', 'Product option type Select', 'PRODUCTS_OPTIONS_TYPE_SELECT', '0', 'The number representing the Select type of product option.', 0, NULL, '2007-03-19 17:57:39', '2007-03-19 17:57:39', NULL, NULL);
    
    INSERT INTO `configuration` VALUES ('', 'Upload prefix', 'UPLOAD_PREFIX', 'upload_', 'Prefix used to differentiate between upload options and other options', 0, NULL, '2007-03-19 17:57:39', '2007-03-19 17:57:39', NULL, NULL);

    What version of Zen Cart are you using?
    Linda McGrath
    If you have to think ... you haven't been zenned ...

    Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!

    Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
    Officially PayPal-Certified! Just click here

    Try our Zen Cart Recommended Services - Hosting, Payment and more ...
    Signup for our Announcements Forums to stay up to date on important changes and updates!

 

 
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. [Not a bug] My Store Does Not Work In Google Chrome
    By articleck in forum Bug Reports
    Replies: 16
    Last Post: 15 Nov 2011, 03:38 AM
  2. My Shipping estimator does not work for guests / users not logged in
    By bgroup99 in forum Built-in Shipping and Payment Modules
    Replies: 11
    Last Post: 10 Nov 2011, 07:27 PM
  3. Base price plus attribute does not seem to work for me
    By danilyn22 in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 25 Mar 2011, 02:00 AM
  4. Shipping Estimator does not work for me when not logged in
    By speedraceratl in forum Built-in Shipping and Payment Modules
    Replies: 2
    Last Post: 22 Aug 2009, 06:14 PM
  5. Send Email tool Does not work if Customer not subscribed.
    By woodlandsprite in forum General Questions
    Replies: 4
    Last Post: 15 Jul 2006, 05:57 AM

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