Page 109 of 113 FirstFirst ... 95999107108109110111 ... LastLast
Results 1,081 to 1,090 of 1125
  1. #1081
    Join Date
    Feb 2012
    Posts
    2
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Hello! Having a bit of a problem getting this add-in to work.

    I installed Zen Cart1.5 and outside of creating a a few categories and items, really haven't done anything else besides the general settings.

    I went to install the add-in, following the directions in the readme. I ran the SQL, but then there seems to be an error in the directions:

    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.
    After unzipping the file the only thin in includes/modules is pages. There is no YOUR_TEMPLATE folder. There is one in includes/templates.

    The first time I tried this, I just went ahead and made a folder there (classic) and then copied everything over as per the instructions. After that, the admin screen still worked, but the main store page just comes up blank.

    I'm hosting on GoDaddy using a Linux shared account if that matters, using PHP 5.2 and MySQL 5.0.

    I did a search in this thread, but I didn't find an answer to my question. Any help would be greatly appreciated.

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

    Default Re: Stocks by attributes

    First you need to say which of the 3 or 4 versions of SBA you are working with.

    Secondly, you are aware that this add-on has not been updated to work with Zen Cart v1.5 right??

    Quote Originally Posted by blatantninja View Post
    Hello! Having a bit of a problem getting this add-in to work.

    I installed Zen Cart1.5 and outside of creating a a few categories and items, really haven't done anything else besides the general settings.

    I went to install the add-in, following the directions in the readme. I ran the SQL, but then there seems to be an error in the directions:



    After unzipping the file the only thin in includes/modules is pages. There is no YOUR_TEMPLATE folder. There is one in includes/templates.

    The first time I tried this, I just went ahead and made a folder there (classic) and then copied everything over as per the instructions. After that, the admin screen still worked, but the main store page just comes up blank.

    I'm hosting on GoDaddy using a Linux shared account if that matters, using PHP 5.2 and MySQL 5.0.

    I did a search in this thread, but I didn't find an answer to my question. Any help would be greatly appreciated.
    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. #1083
    Join Date
    Feb 2012
    Posts
    2
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by DivaVocals View Post
    First you need to say which of the 3 or 4 versions of SBA you are working with.

    Secondly, you are aware that this add-on has not been updated to work with Zen Cart v1.5 right??
    Didn't realize there were multiple versions floating out there. Looks like I downloaded 1.4.14

    I thought that it meant it worked on Zen Cart v1.3.9 and higher.

    I guess I'll start over using Zen Carty v1.3.9 as I really need to have the functionality of this add-in for my site. Any real reason not to use that version?

    The install notes for SBA do still seem to be incorrect.

    Thanks!

  4. #1084
    Join Date
    Sep 2008
    Location
    North Highlands, California 95660
    Posts
    286
    Plugin Contributions
    1

    Default Re: Stocks by attributes

    I am about half way upgrading my version to work with 1.5.0. Hopefully have it out by the end of the week for beta testing. Spent about 5 hours just to get the admin settings to show up in the 1.5.0 Menu. LOL *sigh* For now I am not adding any new features it does have the dynamic drop down add on included in my version. I may remove all the radio buttons stuff that don't work and just have the dropdown options. I am just getting this mod to work with my one client I have left on zen-cart. If I had to do any more work on it... I'll just switch them over to the other cart system I am using instead.
    http://www.sidewalkstyles.com Comfort Footwear, Accessories and More.
    creinold SBA with Dynamic Drop Downs latest Alpha release: http://www.sidewalkstyles.com/creino...art_V1.5.0.zip

  5. #1085
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Stocks by attributes

    I have had a look around so if this has been answered I apologise.

    Am I right in thinking that there is no way to get SBA to ignore a particular attribute?

    For example I have a situation where the product is shoes has attributes, lets say color and size. The product also has a checkbox attribute for 'extra laces' . The extra laces checkbox doesn't actually effect the stock levels at all so needs to be kept out of the stock checking but the other attributes do need to be checked for stock.

    Ha ha! This is just an example. The real situation is considerably more strange :-)

    So, there is no way of excluding the 'extra laces' from the stock checking?

    Thanks

  6. #1086
    Join Date
    Apr 2009
    Posts
    2,134
    Plugin Contributions
    3

    Default Re: Stocks by attributes

    OK I had a look at this myself. My solution is to edit zen_get_prodcts_stock() I put this at the top.

    Code:
       function zen_get_products_stock($products_id, $attributes = '') {
        global $db;
        $products_id = zen_get_prid($products_id);
    
        foreach($attributes as $a)
        {
            if($a != 89)
            {
                $x_attributes[] = $a;
                //echo $a;
            }
        }
        
        $attributes  = $x_attributes;
    Which lets the stock check ignore the option_value = 89. If someone can advise me if I am digging myself a hole later down the road then I'd be grateful. But it seems to work.
    Last edited by niccol; 10 Feb 2012 at 05:39 PM. Reason: An extra bracket sneaked into the code

  7. #1087
    Join Date
    Feb 2005
    Posts
    35
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    I have read a lot of post. I needed a tool that would allow me to have a t-shirt, pick color and show the sizes that are available for that color. The thread I was in directed me to stock by attributes download link. Im confused because I saw someone said it does not work on the new zen cart. I cant get it to work so is this really the case or do I need to do something different?

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

    Default Re: Stocks by attributes

    repeat..
    Quote Originally Posted by DivaVocals View Post
    you are aware that this add-on has not been updated to work with Zen Cart v1.5 right??
    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.

  9. #1089
    Join Date
    Jan 2012
    Posts
    50
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Quote Originally Posted by bobe1997 View Post
    I have read a lot of post. I needed a tool that would allow me to have a t-shirt, pick color and show the sizes that are available for that color. The thread I was in directed me to stock by attributes download link. Im confused because I saw someone said it does not work on the new zen cart. I cant get it to work so is this really the case or do I need to do something different?
    One real issue here is that there are two threads for this problem. One here and one at
    http://www.zen-cart.com/forum/showth...91#post1104291

    In neither is there any resolution. In the other thread I asked if anyone got this working properly and if so, would they be so kind as to write a simple idiots guide. I post here in case some people do not read the other thread.

    Unless there is a reason perhaps it would be best to have a single thread?

    Mark

  10. #1090
    Join Date
    Feb 2012
    Posts
    3
    Plugin Contributions
    0

    Default Re: Stocks by attributes

    Hello everyone and thanks for the contribution. I created the Italian language in the admin and client side and everything is translated properly. Unfortunately when I click on "Add Quantity For Product Variant", the option value is in U.S. dollars instead of euro. In my store I have eliminated the currency dollar (via localization> currencies) and I checked in mysql, currencies no longer exists in the table the value of the dollar. The euro is my default currency. All other currencies, both in management that the store are shown in euros, including attributes. How can I fix? thank you very much

 

 

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