Page 3 of 4 FirstFirst 1234 LastLast
Results 21 to 30 of 33
  1. #21
    Join Date
    Dec 2005
    Location
    NY
    Posts
    188
    Plugin Contributions
    0

    Default Re: Disappearing Text Box

    econcepts...thank you! This specifically did not work, but following through on the link you posted I reviewed the entries against what was in my db and found what others found...that the entry:

    Image Handler Version IH_VERSION 2.0 This is used by image handler to check if the data... 0 100 NULL 2007-06-06 16:47:03 NULL zen_cfg_textarea_small(');

    was missing the '); on the end within the db. Added it, and all is well!

    Ty much for sticking w/ this thread!! Not I can apply to all my products!

  2. #22
    Join Date
    Dec 2005
    Posts
    1,509
    Plugin Contributions
    6

    Default Re: Disappearing Text Box

    Quote Originally Posted by tcustomgolf View Post
    econcepts...thank you! This specifically did not work, but following through on the link you posted I reviewed the entries against what was in my db and found what others found...that the entry:

    Image Handler Version IH_VERSION 2.0 This is used by image handler to check if the data... 0 100 NULL 2007-06-06 16:47:03 NULL zen_cfg_textarea_small(');

    was missing the '); on the end within the db. Added it, and all is well!

    Ty much for sticking w/ this thread!! Not I can apply to all my products!
    No problem at all. I had a few people come to me recently that had the same problem and needed to get it fixed. After what seemed like an eternity of looking for an answer, it hit me that reading the thread Ajeh posted a long time back (I had to go find it again) that there were a few items in the DB that were deleted. After looking at them and seeing a few had to do directly with attributes in question, it made sense to run the patch and viola.

    Hope this helps others in the future. I pulled my hair out to figure this problem out.
    Eric
    20 Ways to Increase Sales Using Zen Cart
    Zen Cart contribs: Simple Google Analytics, Export Shipping Information

  3. #23
    Join Date
    Feb 2004
    Posts
    1,278
    Plugin Contributions
    0

    Default Re: Disappearing Text Box

    Out of nowhere my text boxes are missing.

    The title tag is there. Just not the text box.
    I checked the stylesheet.
    That wasnt it.
    I backed up to a prior tpl_products_info_display

    Link to same problem
    http://www.allforyourwedding.com/ind...oducts_id=1535

    if its this database change you have been talking about. Perhaps you could walk me through how to check/change

  4. #24
    Join Date
    Feb 2004
    Posts
    1,278
    Plugin Contributions
    0

    Default Re: Disappearing Text Box

    Still banging my head against the wall on this one?

    Would upgrading help?

    I tried uploading the SQl patch that was listed but it still did not help.

  5. #25
    Join Date
    Feb 2004
    Posts
    1,278
    Plugin Contributions
    0

    Default Re: Disappearing Text Box

    Still having this issue

    http://www.allforyourwedding.com/ind...oducts_id=1535


    Anyone???

  6. #26
    Join Date
    Oct 2006
    Location
    Worcester, MA
    Posts
    454
    Plugin Contributions
    0

    Default Re: Disappearing Text Box

    I am also having difficulty adding a text box attribute to product in a client's store. I tested adding the text attribute to a product in a clean install on my test server and it worked fine. But on the client's site, the text box doesn't show up at all. So, I'm guessing it's some add-on interfering with the text box. I noticed two things comparing the working site with the non:

    1. When I preview the attribute via the attribute controller and look at the source code for where the text box should be, I see the following in the working site:
    Code:
    <tr>
    <td class="main" align="left" valign="top">File Name:</td>
    <td class="main" align="left" valign="top" width="75%"><input type="text" name ="id[txt_21]" size="32" maxlength="32" value="" />
    </td></tr>
    and this in the non-working site:
    Code:
    <tr>
    <td class="main" align="left" valign="top">File Name:</td>
    <td class="main" align="left" valign="top" width="75%"></td></tr>
    So, it seems as though the text box is not getting written at all and it's not simply a question of a stylesheet rendering it incorrectly.

    2. The other thing I noticed is in the Attribute Controller itself. In the working version there was an option value of "TEXT" listed under the Attribute whereas the value "TEXT" was missing from the non working version.

    While writing this message, I did some investigating into the databases themselves and found that the non-working version was missing an entry in the table: products_options_values that had an id of 0 and a name of "TEXT". Simply adding that record to the products_options_values table solved the problem.

    Hope this helps!

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

    Default Re: Disappearing Text Box

    Thanks for the update that you were missing the default Option Value for the TEXT from your products_options_values table and that adding it was able to correct the problems with TEXT attributes on your screen ...
    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
    Feb 2004
    Posts
    1,278
    Plugin Contributions
    0

    Default Re: Disappearing Text Box

    Could someone write a sql statement for those of us who dont really go in and make modifications to the database.

    Something that i can drop in the sql patch section that would accomplish:

    While writing this message, I did some investigating into the databases themselves and found that the non-working version was missing an entry in the table: products_options_values that had an id of 0 and a name of "TEXT". Simply adding that record to the products_options_values table solved the problem.
    Thanks

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

    Default Re: Disappearing Text Box

    If you are really missing from the products_options_values the TEXT setting and have double and tripple checked ...

    You can use the following to add this back in via the Tools ... Install SQL Patches ...
    PHP Code:
    INSERT INTO products_options_values (products_options_values_idlanguage_idproducts_options_values_nameVALUES (01'TEXT'); 
    NOTE: if you have multiple languages this will require additional work ...
    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
    Jun 2005
    Location
    Cumbria, UK
    Posts
    10,266
    Plugin Contributions
    3

    Default Re: Disappearing Text Box

    Quote Originally Posted by Ajeh View Post
    If you are really missing from the products_options_values the TEXT setting and have double and tripple checked ...

    You can use the following to add this back in via the Tools ... Install SQL Patches ...
    PHP Code:
    INSERT INTO products_options_values (products_options_values_idlanguage_idproducts_options_values_nameVALUES (01'TEXT'); 
    NOTE: if you have multiple languages this will require additional work ...
    I just had to do this on a store... (but WHY would the TEXT option disappear in the first place??).

    With several stores, ALL sharing same add-ons, only one had this problem... strange...
    20 years a Zencart User

 

 
Page 3 of 4 FirstFirst 1234 LastLast

Similar Threads

  1. v139h Disappearing Text
    By soapboxco in forum General Questions
    Replies: 4
    Last Post: 16 Feb 2015, 08:43 PM
  2. Replies: 9
    Last Post: 19 Jul 2011, 06:27 AM
  3. Disappearing Information text
    By timghetta in forum General Questions
    Replies: 2
    Last Post: 9 Jun 2009, 03:22 AM
  4. Disappearing Box
    By webmam in forum Templates, Stylesheets, Page Layout
    Replies: 8
    Last Post: 26 Jun 2008, 08:26 PM
  5. Stumped on Disappearing \ Reappearing Text
    By ThePatch in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 26 Apr 2007, 12:49 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