Page 155 of 356 FirstFirst ... 55105145153154155156157165205255 ... LastLast
Results 1,541 to 1,550 of 3552
  1. #1541
    Join Date
    Mar 2012
    Posts
    11
    Plugin Contributions
    0

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    The query that came with the installation only did those 3 things...

    listed is the entire .sql file...

    Code:
    CREATE TABLE products_with_attributes_stock (
            stock_id INT NOT NULL AUTO_INCREMENT ,
            products_id INT NOT NULL ,
            stock_attributes VARCHAR( 255 ) NOT NULL ,
            quantity FLOAT NOT NULL ,
            sort INT NOT NULL ,
            PRIMARY KEY ( `stock_id` )
            );
    
    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 ('Show available stock level in cart when less than order', 'STOCK_SHOW_LOW_IN_CART', 'false', 
                   'When customer places more items in cart than are available, show the available amount on the shopping cart page:',
                   '9',
                   '6',
                   NULL,
                   now(),
                   NULL,
                   "zen_cfg_select_option(array('true', 'false'),"
           ),
           ('Display Images in Admin', 'STOCK_SHOW_IMAGE', 'false', 
                   'Display image thumbnails on Products With Attributes Stock page? (warning, setting this to true can severly slow the loading of this page):',
                   '9',
                   '6',
                   NULL,
                   now(),
                   NULL,
                   "zen_cfg_select_option(array('true', 'false'),"
           );
    Regardless, I ended up backing up my previous cart and I plan on tackling this at a later time. It's too time consuming and isn't a priority at this time.

    Thank you for your help.

  2. #1542
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    If you installed any of the 4.0 versions of SBA from free downloads with Zen Cart v1.5 then THAT is your issue.. It's been posted/document MANY times in this thread that NONE of the versions available in the free downloads work with Zen Cart v1.5..

    Quote Originally Posted by Skippersyacht View Post
    The query that came with the installation only did those 3 things...

    listed is the entire .sql file...

    Code:
    CREATE TABLE products_with_attributes_stock (
            stock_id INT NOT NULL AUTO_INCREMENT ,
            products_id INT NOT NULL ,
            stock_attributes VARCHAR( 255 ) NOT NULL ,
            quantity FLOAT NOT NULL ,
            sort INT NOT NULL ,
            PRIMARY KEY ( `stock_id` )
            );
    
    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 ('Show available stock level in cart when less than order', 'STOCK_SHOW_LOW_IN_CART', 'false', 
                   'When customer places more items in cart than are available, show the available amount on the shopping cart page:',
                   '9',
                   '6',
                   NULL,
                   now(),
                   NULL,
                   "zen_cfg_select_option(array('true', 'false'),"
           ),
           ('Display Images in Admin', 'STOCK_SHOW_IMAGE', 'false', 
                   'Display image thumbnails on Products With Attributes Stock page? (warning, setting this to true can severly slow the loading of this page):',
                   '9',
                   '6',
                   NULL,
                   now(),
                   NULL,
                   "zen_cfg_select_option(array('true', 'false'),"
           );
    Regardless, I ended up backing up my previous cart and I plan on tackling this at a later time. It's too time consuming and isn't a priority at this time.

    Thank you for your help.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  3. #1543
    Join Date
    Mar 2012
    Posts
    11
    Plugin Contributions
    0

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    that makes perfect sense now... Thank you for your help.

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

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    Quote Originally Posted by Skippersyacht View Post
    that makes perfect sense now... Thank you for your help.
    This is why I always say it PAYS to read the support thread BEFORE installing add-ons..

    Look for the SBA 5.0 thread.. Creinold has a beta version that is working..
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #1545
    Join Date
    Jan 2011
    Posts
    65
    Plugin Contributions
    0

    Default Re: Stock by Attribute v4.0 for Zen Cart 1.3.5+

    Quote Originally Posted by athena View Post
    In post #1293 I shared the following fix for zencart version 1.3.9h using the SBA version .13 - it is a no fuss no muss solution to get your store up and running. I have not worked with .14 but if you go back to 1.3.9 I highly recommend this fix. It has solved the problem for many here:
    Hi Athena,

    Can you elaborate if your solution actually restocks each attribute to the original quantities when an order is deleted and the option to restock is checked??? I've tested it on my store, and it does not restock. I'm using the same exact version of SBA that you're using, along with your suggested fix for the header_php.php.

    The modified core file of order.php that SBA uses, is also modified by my following modules:

    Fast and Easy Checkout
    Super Orders

    Although I've merged everything and all modules are fully functioning...my only dilemma now is when customers submit large orders as RFQ's (request for quotes), I need to be able to cancel the order and have all the items auto-restock, or else it becomes a huge hassle to manually adjust them. Thanks!

  6. #1546
    Join Date
    Aug 2006
    Posts
    11
    Plugin Contributions
    0

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    Stock by Attributes for Zen Cart V 1.5?
    I recently upgraded to the most recent version of Zen Cart. Stock by Attributes doesn't seem to be compatible. Is there a newer version, or perhaps this feature is built into the new version? Any input is greatly appreciated, thank you.
    Rich

  7. #1547
    Join Date
    Aug 2006
    Posts
    11
    Plugin Contributions
    0

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    Can you please post a link to where I can download the latest Stock by Attribute Addon?
    thanks,
    Rich

  8. #1548
    Join Date
    May 2009
    Posts
    68
    Plugin Contributions
    0

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    When I delete an order and check "re-stock product quantity" it does not work, any idea how to solve this problem?

  9. #1549
    Join Date
    May 2009
    Posts
    68
    Plugin Contributions
    0

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    ad post 1550:

    the order gets deleted, but the quantity will not get re-stocked.

  10. #1550
    Join Date
    Sep 2008
    Location
    Cleethorpes
    Posts
    1,227
    Plugin Contributions
    6

    Default Re: Stock by Attribute v4.0 addon for v1.3.5-1.3.9

    Just wondered if this has been upgraded to work with zen cart v1.5 yet?
    Nick Smith - Venture Design and Print
    https://venturedesignandprint.co.uk

 

 

Similar Threads

  1. Problems with addon: Dynamic Drop Downs for Stock By Attribute
    By Dunk in forum All Other Contributions/Addons
    Replies: 56
    Last Post: 30 Apr 2014, 07:55 PM
  2. MySQL Problem with Product with Attribute Stock addon
    By rtwingfield in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 20 Sep 2011, 03:35 PM
  3. Hide Zero Quantity Attributes with attribute-stock addon
    By leevil123 in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 11 Feb 2010, 05:06 PM
  4. Replies: 4
    Last Post: 22 Jan 2010, 10:43 PM
  5. Price Products in the grid by 'Stock by Attribute' addon?
    By Salixia in forum Setting Up Categories, Products, Attributes
    Replies: 0
    Last Post: 27 Oct 2009, 06:03 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