Page 47 of 113 FirstFirst ... 3745464748495797 ... LastLast
Results 461 to 470 of 1125
  1. #461
    Join Date
    Oct 2005
    Location
    Eastern US
    Posts
    488
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by Glamorousshoe View Post
    ... it takes lots of time to add each product then set the attribute then input the quanity and finally use image handler to upload more images.

    The question is: Is there a way where I can input the quanity of more than one product on the same page, or at least the quanity of each different attribute for each item (for example: Input the quanity for different attribute of the same shoe sizes 5-10)?

    Any feedback is appreciated!
    I don't know of any way, but there are a couple of small time savers you can use. I seem to remember that there was an extra confirmation step in the original mod long ago. I think it is in the old thread that there were instructions to omit that step...sorry I can't be more specific, it's been a long time.

    The other thing is that after you add the quantity for the 1st attribute combination to product A, hit your browser back button (you don't even need to wait for the page to fully load) in order to add the next attribute combo to that same product A. That at least eliminates having to scroll down to the same product X times in a row. It's not much, but definitely saves a bit of time...

    Audra

  2. #462
    Join Date
    Feb 2008
    Posts
    1,336
    Plugin Contributions
    1

    Default Re: Stocks by attributes

    Thank you, I never thought about using the back button, that is a smart move and it does save the headache of searching for the product in the list.

    Forward thinking A+

  3. #463
    Join Date
    Mar 2007
    Posts
    28
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by bencart View Post
    I am having the same problem as above again

    The cart owner is adding products and the table products_with_attributes_stock is showing that the stock_attributes column is being loaded with measurementID,quantityID where as the demo ones I put in where only being loaded with measurementID. None of the stock_by_attributes files have been modified from the original files, so I would have thought it should be working?
    I have now fixed this so that Product Attribute Grid and Stock by Attributes work when the attribute grid is setup to use single attributes.

    The file admin/products_with_attributes_stock.php needs this modification:

    Original Code:
    PHP Code:
                foreach($product_attributes as $option_name => $options)
                {
                    echo 
    '<p><strong>'.$option_name.': </strong>';
                    echo 
    zen_draw_pull_down_menu('attributes[]',$options).'</p>'."\n";
                } 
    Fixed Code:
    PHP Code:
                foreach($product_attributes as $option_name => $options)
                {
                    
    // if the option isn't the attribute grids dummy quantity attribute
                    
    if($option_name != 'Quantity')
                    {
                        echo 
    '<p><strong>'.$option_name.': </strong>';
                        echo 
    zen_draw_pull_down_menu('attributes[]',$options).'</p>'."\n";
                    }

                } 

  4. #464
    Join Date
    Feb 2008
    Posts
    14
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Hi all
    I need a little help to install SBA 4.7. I'm reading installation instructions and I'm using ZC 1.3.8(a).

    "Prepare the package for upload to your server by renaming the following folders to match your template name: includes/modules/YOUR_TEMPLATE and includes/templates/YOUR_TEMPLATE."

    In SBA 4.7 package I can find and rename includes/templates/YOUR_TEMPLATE but there isn't includes/modules/YOUR_TEMPLATE

    Incorrect instruction, or... ?

  5. #465
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Stocks by attributes

    Quote Originally Posted by joystick View Post
    In SBA 4.7 package I can find and rename includes/templates/YOUR_TEMPLATE but there isn't includes/modules/YOUR_TEMPLATE

    Incorrect instruction, or... ?
    Left over from older versions. Changes have been made to minimise over-riding of files and over several releases, the number of files over-written and over-ridden has been reduced. The module file for which this instruction was originally written no longer needs to be changed, so you can safely ignore that part of the instructions.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  6. #466
    Join Date
    Feb 2008
    Posts
    14
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    I think that it's a good idea to update install instruction.

    Quote Originally Posted by kuroi View Post
    so you can safely ignore that part of the instructions.
    I don't understund if is necessary to rename includes/templates/YOUR_TEMPLATE

    (I'm using a template)

  7. #467
    Join Date
    Apr 2006
    Location
    London, UK
    Posts
    10,569
    Plugin Contributions
    25

    Default Re: Stocks by attributes

    Quote Originally Posted by joystick View Post
    I think that it's a good idea to update install instruction.
    So do I. Please feel free to do so.

    Quote Originally Posted by joystick View Post
    I don't understund if is necessary to rename includes/templates/YOUR_TEMPLATE
    It is.
    Kuroi Web Design and Development | Twitter

    (Questions answered in the forum only - so that any forum member can benefit - not by personal message)

  8. #468
    Join Date
    Feb 2008
    Posts
    14
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Ok, installed. To test contrib, I try to set size options and apply size attribute to an article. I set quantity in stock... Well! It work!



    But it's very strange that PWA_DELETE_VARIANT doesn't work. I clik on it, I click yes to confirm, I've not any error message but variant is already present.

    I've another question: I set variant and stock. Is it a problem or is it VERY dangerous to remove a relative Option Value (look the picture) for example "Taglia 26", from attribute applied to an article (Admin-->catalogue-->Attributes Controller) ?
    Last edited by joystick; 3 Mar 2008 at 02:06 AM.

  9. #469
    Join Date
    Feb 2008
    Posts
    529
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    I'm using 3.71 and Stock by Attributes 4.6

    I am using two sets of values - size and colour - and using radio buttons for each.

    So far - I've got a test product set with stock numbers for each combination. These numbers stand the test in the shopping cart - ie ordering too many will give error message to cart owner, along with actual number of stock available; ordering zero will give an 'out of stock' error message, and not selecting an attribute from each attribute will give a ' you must select colour (and/or size, as the case may be) error message.

    I see on wiki page info about showing stock on product page when a single attribute is used.

    Is there a way to show stock available on product page when two attributes are used?

  10. #470
    Join Date
    Feb 2008
    Posts
    14
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    any idea?

 

 
Page 47 of 113 FirstFirst ... 3745464748495797 ... 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