Page 8 of 113 FirstFirst ... 6789101858108 ... LastLast
Results 71 to 80 of 1125
  1. #71
    Join Date
    Oct 2005
    Location
    Eastern US
    Posts
    488
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    sWitt,
    I am not seeing this same behavior on my test cart. See here:
    www.naturewearorganics.com/store_v1302

    Papacek,
    I do know that the original PWAS by Dafonz was NOT compatible w/ Dual Prices, so I'm not surprised to hear that you are having trouble. I thought someone was working on getting the two to work together way back when, but I don't think it ever happenned. Take a look at the archived thread for Dual Prices.


    Audra

  2. #72
    Join Date
    Jul 2006
    Posts
    11
    Plugin Contributions
    0

    Re: Stocks by attributes

    audradh,
    thanx for the reply;

    **Stocks by attributes WORKS ON audradh's test site**
    i was able to test a working example
    on your site (see link in previous post)
    with two dropdown attributes for size & color.

    --no "out of stock warning" that i've been experiencing!
    --does this give any one a clue?
    --could i have some db problems?
    --applying the SQL patch, took 3 tries to get the name right
    (mentioned in a post above) could there be a corruption
    with similarly named tables?? i'll look to see if I can find
    the first two improperly named tables & delete them--
    any other leads??

    thanx,
    sWitt--OVER!

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

    Default Re: Stocks by attributes

    Quote Originally Posted by switt
    audradh,
    thanx for the reply;

    **Stocks by attributes WORKS ON audradh's test site**
    i was able to test a working example
    on your site (see link in previous post)
    with two dropdown attributes for size & color.

    --no "out of stock warning" that i've been experiencing!
    --does this give any one a clue?
    --could i have some db problems?
    --applying the SQL patch, took 3 tries to get the name right
    (mentioned in a post above) could there be a corruption
    with similarly named tables?? i'll look to see if I can find
    the first two improperly named tables & delete them--
    any other leads??

    thanx,
    sWitt--OVER!
    switt...

    One thing I think of is to make sure that your templates/tpl_shopping_cart_default.php is correct. And also maybe just reload all of the files for the mod. Sometimes just one file can be forgotten....

    Did you do any of the adjustments that were suggested in the older thread? Perhaps you're mixing a change with 1.2.6 for this version?

    Just grasping at straws for ya!

  4. #74
    Join Date
    Jan 2006
    Posts
    40
    Plugin Contributions
    0

    Re: Stocks by attributes

    Just to follow up on my previous post.

    I have managed to convince my cart that it should display the stock level warning in red by editing the following piece of code in includes\functions\function_lookups.php

    // modified to include attributes
    function zen_check_stock($products_id, $products_quantity, $attributes = '') {

    $stock_left = zen_get_products_stock($products_id, $attributes) - $products_quantity;
    $out_of_stock = '';


    if ($stock_left < 0 && !is_array($attributes)) {
    $out_of_stock = '<br/><span class="alert bold"><span class="markProductOutOfStock">' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '</span>';
    }
    elseif ($stock_left < 0 && is_array($attributes)) {
    $out_of_stock = '<br/><span class="alert bold"><span class="markProductOutOfStock">' . STOCK_MARK_PRODUCT_OUT_OF_STOCK . '</span>';
    }

    return $out_of_stock;
    }



    BUT the thing I still cannot get to show is the available stock quantity.

    Anyone any clues what to add to make the available stock show up?

    Please,, pretty please

    Bunster

  5. #75
    Join Date
    May 2006
    Posts
    310
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by Bunster

    BUT the thing I still cannot get to show is the available stock quantity.

    Anyone any clues what to add to make the available stock show up?

    Please,, pretty please

    Bunster
    it isn't automatic. It requires additional coding and it doesn't work for tierd attributes. I can't remember if I posted about it earlier in this thread.
    Live again! http://spritelygoods.com Rebuilt on ZC v 1.5.1 from 1.3.0.2

  6. #76
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    OK, so how would I transfer the data for this mod from my 1.2.7 database to the 1.3.0.2 database? Or does it all have to be manually entered again in the admin?
    Danielle

  7. #77
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Nevermind, I figured it out :) The database patch is the same I guess, so it just automatically transferred them over when I upgraded the database. It wasn't showing before because for some reason the files didn't upload correctly into cpanel!
    Danielle

  8. #78
    Join Date
    May 2006
    Location
    Japan
    Posts
    36
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    hi. this is a great module and a must have for my online store.

    installed it and am having some concern. doesnt know if its my installation or what.
    anyhow this is the scenario.

    i have two items on cart ...

    1 SHIRT-BLUE SIZE 60cm
    1 SHIRT-BLUE SIZE 80cm

    SHIRT-BLUE SIZE 80cm, is 0 in stock.

    In shopping cart, there is a message the items is out of stock, but doesnt mark which item is actually out of stock. shouldn't SHIRT-BLUE SIZE 80cm have "***" ?

    How do I mark out of stock items with '***'?

  9. #79
    Join Date
    Oct 2004
    Posts
    1,045
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by makulit
    hi. this is a great module and a must have for my online store.

    installed it and am having some concern. doesnt know if its my installation or what.
    anyhow this is the scenario.

    i have two items on cart ...

    1 SHIRT-BLUE SIZE 60cm
    1 SHIRT-BLUE SIZE 80cm

    SHIRT-BLUE SIZE 80cm, is 0 in stock.

    In shopping cart, there is a message the items is out of stock, but doesnt mark which item is actually out of stock. shouldn't SHIRT-BLUE SIZE 80cm have "***" ?

    How do I mark out of stock items with '***'?
    In your admin, under Configuration-Stock, you will see an option called Mark Product Out Of Stock. That is where you would enter *** or whatever you would like to use as an out of stock symbol.
    Danielle

  10. #80
    Join Date
    May 2006
    Location
    Japan
    Posts
    36
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by Danielle
    In your admin, under Configuration-Stock, you will see an option called Mark Product Out Of Stock. That is where you would enter *** or whatever you would like to use as an out of stock symbol.
    Hi Danielle.

    Yes, Admin > Configuration > Stock > Mark Product Out of Stock is set to ***
    But it doesnt show on checkout

    Where else can I check this problem? Any idea?

    Thanks!

 

 
Page 8 of 113 FirstFirst ... 6789101858108 ... LastLast

Similar Threads

  1. v139h Stocks of certain products disappearing automatically
    By Lowwi in forum General Questions
    Replies: 4
    Last Post: 11 Aug 2015, 09:09 PM
  2. Installing Stocks by Attribute
    By dragon03kf in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 26 Oct 2008, 07:42 PM
  3. Stocks by attributes
    By hcd888 in forum General Questions
    Replies: 1
    Last Post: 12 May 2008, 08:52 AM
  4. Multiple stocks per product
    By jaycode in forum General Questions
    Replies: 4
    Last Post: 5 Aug 2007, 11:55 AM
  5. Products with attribute stocks
    By Svanis in forum All Other Contributions/Addons
    Replies: 4
    Last Post: 5 Jul 2006, 03:19 AM

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