Page 81 of 113 FirstFirst ... 3171798081828391 ... LastLast
Results 801 to 810 of 1125
  1. #801
    Join Date
    Aug 2009
    Location
    Bedford, England
    Posts
    966
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by DivaVocals View Post
    Yes he does..

    I'm afraid no one has written a step by step to remove one of the errant versions of SBA..

    Best way to approach this is to open up the folder where you have the source files that you used for your install and one by one open each folder and remove those same files from your store..

    That said, I cannot say for sure, but you may be able to simply install the Kuroi version over the Ajax version.. I haven't tried that personally to know if it works..
    where can I obtain a copy of the Kuroi version please?

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

    Default Re: Stocks by attributes

    Quote Originally Posted by philip937 View Post
    where can I obtain a copy of the Kuroi version please?
    If you look at the page for Stock By Attributes, scroll down through the previous versions. Find ver 4.7 by Kuroi that does NOT have Ajax or MultiAdd after the version number..

  3. #803
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Hi,

    I read through the features of Stock by Attributes and only want the feature where it shows how many pieces are available when customer attempts to purchase over the available qty in cart.

    Right now when someone tries to purchase over the stock amount per product, the message just says "There is not suffcient amt..." but doesn't really say how many are left for them to purchase. This is frustrating to customer who sometimes do not look at the available stock description on the product info page.

    Does anyone know which files these are? Is it possible to just extract this portion and still use the regular stock by product feature of zencart?

    I'm using zencart 1.3.8a. Thanks

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

    Default Re: Stocks by attributes

    This should be posted in a separate thread as it is not a Stock By Attributes support question.. You'll probably get more answers that way..
    Quote Originally Posted by Decostyle View Post
    Hi,

    I read through the features of Stock by Attributes and only want the feature where it shows how many pieces are available when customer attempts to purchase over the available qty in cart.

    Right now when someone tries to purchase over the stock amount per product, the message just says "There is not suffcient amt..." but doesn't really say how many are left for them to purchase. This is frustrating to customer who sometimes do not look at the available stock description on the product info page.

    Does anyone know which files these are? Is it possible to just extract this portion and still use the regular stock by product feature of zencart?

    I'm using zencart 1.3.8a. Thanks

  5. #805
    Join Date
    Aug 2009
    Location
    Bedford, England
    Posts
    966
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    I'm nearly fully up and running now. just a few niggles I need sorting..

    1. When I have my stock settings to disable product when out of stock, they still show??? is there a fix for this? I did notice that the drop down attributes behave correctly and switch off if the attribute is out of stock, but if all attributes are out of stock and the overall product_id is out of stock, it still shows...

    2. I want my products to go out of stock when stock level reaches 30... I found a post saying you only had to change one setting for this, but when I do only what was described below, the product shows out of stock, my attributes stay showing too...


    Can anyone advise on any of this??

    Cheers.

    Phil

  6. #806
    Join Date
    Aug 2009
    Location
    Bedford, England
    Posts
    966
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    forgot to add the suggested change needed:

    i figured it out it was really simple actually
    this is the only file you have to edit:
    /home/rickie/public_html/includes/functions/functions_general.php
    Line #1146 : case ($button_check->fields['products_quantity'] <= 5 and SHOW_PRODUCTS_SOLD_OUT_IMAGE == '1')

    It originally said case ($button_check->fields['products_quantity'] <= 0 and SHOW_PRODUCTS_SOLD_OUT_IMAGE == '1')

    I just changed it to "<=5" and then i showed a sold out button when the product quantity is <=5

  7. #807
    Join Date
    Aug 2009
    Location
    Bedford, England
    Posts
    966
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by philip937 View Post
    I'm nearly fully up and running now. just a few niggles I need sorting..

    1. When I have my stock settings to disable product when out of stock, they still show??? is there a fix for this? I did notice that the drop down attributes behave correctly and switch off if the attribute is out of stock, but if all attributes are out of stock and the overall product_id is out of stock, it still shows...

    2. I want my products to go out of stock when stock level reaches 30... I found a post saying you only had to change one setting for this, but when I do only what was described below, the product shows out of stock, my attributes stay showing too...


    Can anyone advise on any of this??

    Cheers.

    Phil
    thinking about it, if the first probelm is solved the second one will be as if they product disappears then the attributes wouldnt be seen... Hope someone knows a fix for this.

  8. #808
    Join Date
    Aug 2009
    Location
    Bedford, England
    Posts
    966
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    No I was wrong,

    I have just noticed that I have the following stock:

    Small = 4

    Medium = 0

    Large = 40

    I have done what I mentioned above and set:
    Line #1146 : case ($button_check->fields['products_quantity'] <= 30 and SHOW_PRODUCTS_SOLD_OUT_IMAGE == '1')

    But this has still just allowed someone to check out when the Small was set to 4!!

    Please someone point me in the right direction.. if the attributes disappear when they hit 0, there must be somewhere I can change this value to 30....

  9. #809
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Stocks by attributes

    You should read through this whole thread.. It will give you a better feel for this mod.. Also you should give a read through the other support thread for this mod. (Stock by Attribute v4.0 for Zen Cart 1.3.5+)

    So if you have an attribute called size and had stock as follows:
    S = 5
    M = 12
    L = 0

    If I understand your posts correctly, you are asking if this mod will "hide" attributes when the amount of stock for that variant = "0". (In this example this would be size "L") The answer is NO.. if a customer adds a variant that is out of stock to the cart, he will not be notified until he adds the out of stock variant to the cart.

    Now there is another mod that has been written specifically to work with Stock by Attributes (the Kuroi version not the "others") It is the Product Attributes Grid add-on. This add will allow you to visually see which variants are out of stock.

    You can see this in action in this example:
    http://clients.overthehillweb.com/ha...rimeter-Medium

    Link to the Product Attributes Grid is here
    Support thread for Product Attributes Grid is here


    Quote Originally Posted by philip937 View Post
    No I was wrong,

    I have just noticed that I have the following stock:

    Small = 4

    Medium = 0

    Large = 40

    I have done what I mentioned above and set:
    Line #1146 : case ($button_check->fields['products_quantity'] <= 30 and SHOW_PRODUCTS_SOLD_OUT_IMAGE == '1')

    But this has still just allowed someone to check out when the Small was set to 4!!

    Please someone point me in the right direction.. if the attributes disappear when they hit 0, there must be somewhere I can change this value to 30....

  10. #810
    Join Date
    Aug 2009
    Location
    Bedford, England
    Posts
    966
    Plugin Contributions
    0

    Default

    Quote Originally Posted by DivaVocals View Post
    You should read through this whole thread.. It will give you a better feel for this mod.. Also you should give a read through the other support thread for this mod. (Stock by Attribute v4.0 for Zen Cart 1.3.5+)

    So if you have an attribute called size and had stock as follows:
    S = 5
    M = 12
    L = 0


    Diva,

    I'm confused. You say the answer is NO to hiding attributes? Mine does hide the attributes when stock is 0. What I was asking is how to change this from 0 to 30.
    For the attributes to hide at stock 0 they must be being told to do this somewhere?
    If I understand your posts correctly, you are asking if this mod will "hide" attributes when the amount of stock for that variant = "0". (In this example this would be size "L") The answer is NO.. if a customer adds a variant that is out of stock to the cart, he will not be notified until he adds the out of stock variant to the cart.

    Now there is another mod that has been written specifically to work with Stock by Attributes (the Kuroi version not the "others") It is the Product Attributes Grid add-on. This add will allow you to visually see which variants are out of stock.

    You can see this in action in this example:
    http://clients.overthehillweb.com/ha...rimeter-Medium

    Link to the Product Attributes Grid is here
    Support thread for Product Attributes Grid is here
    Posted via Mobile Device

 

 
Page 81 of 113 FirstFirst ... 3171798081828391 ... 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