Page 4 of 7 FirstFirst ... 23456 ... LastLast
Results 31 to 40 of 65
  1. #31
    Join Date
    Feb 2009
    Posts
    13
    Plugin Contributions
    0

    Default Re: Dependant Attributes - Can I do this?

    Quote Originally Posted by VCSharpin View Post
    As an update, I do have this working now. THANKS!
    Hello,

    I have a fresh install of 1.3.8 and really need this dynamic drop downs to function before I start really adding content.

    I have been getting the error message on the product page

    "1146 Table 'mydb.TABLE_PRODUCTS_STOCK' doesn't exist
    in:
    [select quantity from TABLE_PRODUCTS_STOCK where products_id = '1' AND quantity > 0]"

    I do have both stock_by_attributes and dynamic drop down installed. I have read through these forums but nothing in here seems to help. Tried modifying the "includes/database_tables.php" by adding... define('TABLE_PRODUCTS_STOCK', 'products_with_attributes_stock');

    This only resulted in a completely white screen.

    How do I get this working?

    Many thanks!

  2. #32
    Join Date
    Dec 2007
    Location
    Hoboken, NJ
    Posts
    96
    Plugin Contributions
    1

    Default Re: Dependant Attributes - Can I do this?

    Quote Originally Posted by dthomas View Post
    Hello,

    I have a fresh install of 1.3.8 and really need this dynamic drop downs to function before I start really adding content.

    I have been getting the error message on the product page

    "1146 Table 'mydb.TABLE_PRODUCTS_STOCK' doesn't exist
    in:
    [select quantity from TABLE_PRODUCTS_STOCK where products_id = '1' AND quantity > 0]"

    I do have both stock_by_attributes and dynamic drop down installed. I have read through these forums but nothing in here seems to help. Tried modifying the "includes/database_tables.php" by adding... define('TABLE_PRODUCTS_STOCK', 'products_with_attributes_stock');

    This only resulted in a completely white screen.

    How do I get this working?

    Many thanks!
    You will need to add the define to database_tables.php. This is what my file looks like...


    Code:
    define('TABLE_PRODUCTS_STOCK', 'products_with_attributes_stock');

  3. #33
    Join Date
    Mar 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Dependant Attributes - Can I do this?

    hello,

    I have the same problem that dthomas.

    I have modified the includes/database_tables.php but to me it continues leaving something similar on the product page info:

    "1146 Table 'prueba.products_with_attributes_stock' doesn't exist
    in:
    [SELECT quantity FROM products_with_attributes_stock AS a LEFT JOIN products_attributes AS b ON (b.options_id=1 AND b.options_values_id=16) WHERE a.products_id = '158' AND a.stock_attributes = b.products_attributes_id AND a.quantity > 0 order by b.products_options_sort_order]"



    I have installed Zencart 1,38 with the contributions Stock by Attributes 4-7MULTIADD and Dynamic DropDowns.


    Some aid?


    thx!

  4. #34
    Join Date
    Sep 2008
    Location
    San Diego
    Posts
    159
    Plugin Contributions
    0

    Default Re: Dependant Attributes - Can I do this?

    Hi - I have other attributes installed on a Cherry-Zen site; will installing this affect those in any way?
    Rufusclc

  5. #35
    Join Date
    Dec 2007
    Location
    Hoboken, NJ
    Posts
    96
    Plugin Contributions
    1

    Default Re: Dependant Attributes - Can I do this?

    Does "products_with_attributes_stock" exist in your database?


    Cal

  6. #36
    Join Date
    Sep 2008
    Location
    San Diego
    Posts
    159
    Plugin Contributions
    0

    Default Re: Dependant Attributes - Can I do this?

    no, I dont see it.

  7. #37
    Join Date
    Dec 2007
    Location
    Hoboken, NJ
    Posts
    96
    Plugin Contributions
    1

    Default Re: Dependant Attributes - Can I do this?

    Quote Originally Posted by rufusclc View Post
    no, I dont see it.

    K, I think that suggests that you did not fully install the Stock by Attributes contribution.

  8. #38
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Dependant Attributes - Can I do this?

    Hi ModernM, I'm hunting you down, LOL.

    I've installed the dynamic drop downs for attributes stock.

    Do you know why, once installed, the attribute images no longer show up, but only when using the sequenced drop downs?

    See here:
    http://www.monkeypantskids.com/large...iaper-p-4.html

    and then click to go to the next product. One shows the images, one does not.

    I want all attribute images to show up at all times, whether or not the attribute option is in stock, but I can't for the life of me get it to happen.

    Thanks!

    Also, is there a way to add the number in stock next to each drop down item?

  9. #39
    Join Date
    Jan 2005
    Location
    USA, St. Louis
    Posts
    3,710
    Plugin Contributions
    9

    Default Re: Dependant Attributes - Can I do this?

    Quote Originally Posted by jettrue View Post
    Hi ModernM, I'm hunting you down, LOL.

    I've installed the dynamic drop downs for attributes stock.

    Do you know why, once installed, the attribute images no longer show up, but only when using the sequenced drop downs?

    See here:
    http://www.monkeypantskids.com/large...iaper-p-4.html

    and then click to go to the next product. One shows the images, one does not.

    I want all attribute images to show up at all times, whether or not the attribute option is in stock, but I can't for the life of me get it to happen.

    Thanks!

    Also, is there a way to add the number in stock next to each drop down item?
    I figured it out. Took a while.

    in includes/templates/YOUR_TEMPLATE/templates/tpl_modules_attributes.php I changed this:

    Code:
    <?php
    if ($options_attributes_image[$i] != '') {
    ?>
    <?php echo $options_attributes_image[$i]; ?>
    <?php
    }
    ?>
    to this:
    Code:
    <?php
    for($i=0;$i<sizeof($options_name);$i++) {
    if ($options_attributes_image[$i] != '') {
    echo $options_attributes_image[$i]; 
    }
    }
    ?>

  10. #40
    Join Date
    Mar 2009
    Posts
    1
    Plugin Contributions
    0

    Default Re: Dependant Attributes - Can I do this?

    Hello!

    How works this Dynamic Drop Downs.

    Can You send me an Example!

    Thanks

 

 
Page 4 of 7 FirstFirst ... 23456 ... LastLast

Similar Threads

  1. v151 Child/dependant attributes on products?
    By Foster in forum Setting Up Categories, Products, Attributes
    Replies: 3
    Last Post: 17 May 2013, 07:46 PM
  2. Discounts dependant on attributes
    By lazerradial2003 in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 1 Sep 2007, 01:01 PM
  3. Dependant attributes prices
    By redgorilla in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 16 Aug 2007, 12:23 PM
  4. Dependant Attributes
    By Wrongsauce in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 26 Jul 2007, 08:06 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