Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 57
  1. #11
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,021
    Plugin Contributions
    32

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    Hate to dredge up such an old post.. but I wanted to know if you ever resolved this?? I've seen lots of posts on this issue, but you appear to be the closest to having a real solution.. Did you work this out.. Care to share???

    Quote Originally Posted by laurenjj View Post
    After much hair pulling, I've managed to come up with a sort of solution to my initial problem (and I believe a few other of your) problem...... which is how to use this mod when you have some products that have attributes OTHER THAN dropdowns because currently you can't....And I've gotten far and will post the entire work around when it's complete so I don't confuse anyone....but my current question may just be a simple zencart/mysql/php question:


    I added a flagged field to the 'products' table via phpmyadmin then when the tpl_product_info_display.php page (includes/templates/YOURTEMPLATE/templates) loads, around line 134, right after where the code to 'display the product attributes' is, I have put in an if/else statement that says that if that product is 'flagged' then /tpl_modules_attributes.php will load, and if not, then /tpl_modules_attributesversion2.php will load. Now I know that statement works because
    Code:
    <?php
    /**
     * display the product atributes
     */
     
     if ($_GET['products_id'] < 2) {
      require($template->get_template_dir('/tpl_modules_attributes.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_attributes.php');
       }
     
      else {
       require($template->get_template_dir('/tpl_modules_attributestemp.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_attributestemp.php'); }
      }
    ?>
    Will indeed load the one page for all products with a product_id less than2, and the other page for all others.... what I'm having a problem doing is changing the 'product_id' to the new 'flagged' field in the same table. I can indeed PRINT the 'flagged' value (either 0 or 1) by plugging in:
    Code:
    <?php echo $product_info->fields['flagged']; ?>
    but I can't figure out how to correctly replace
    Code:
     if ($_GET['products_id'] < 2) {
    with something like
    Code:
     if ($_GET['flagged'] = 2) {
    ...

  2. #12
    Join Date
    Apr 2008
    Posts
    60
    Plugin Contributions
    0

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    If I want to uninstall dynamic dropdowns, do I simply carefully remove / replace the various files uploaded? I know it modified the mysql database, do I need to worry about that?

    Warm Regards,


    Joel

  3. #13
    Join Date
    Aug 2005
    Location
    Arizona
    Posts
    27,755
    Plugin Contributions
    9

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    I know it modified the mysql database, do I need to worry about that?
    Yes you will most likely...see if the mod has a removal sql
    Zen-Venom Get Bitten

  4. #14
    Join Date
    Dec 2009
    Posts
    35
    Plugin Contributions
    0

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    I have just installed this mod today. I'm not sure what happened but I can see the attribute but not the quantity. This mod is supposed to display the quantity along with the attributes isn't it?

    http://lilpixies.com/index.php?main_...&products_id=2

    Hope someone can help me.

    Thanks!

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

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    Short answer.. this mod doesn't work, and there has been no support for it in forever..

    Quote Originally Posted by anshii View Post
    I have just installed this mod today. I'm not sure what happened but I can see the attribute but not the quantity. This mod is supposed to display the quantity along with the attributes isn't it?

    http://lilpixies.com/index.php?main_...&products_id=2

    Hope someone can help me.

    Thanks!

  6. #16
    Join Date
    Jan 2010
    Location
    Lake Nocona, Texas
    Posts
    9
    Plugin Contributions
    0

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    I have been told that this mod doesn't work, but in places people say that it works great.
    Well,does it work or does it not? I would appreciate knowing. It would be a help and save time if it does and a waste of time if not.
    Please let me know.
    Jerry

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

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    Quote Originally Posted by DivaVocals View Post
    Short answer.. this mod doesn't work, and there has been no support for it in forever..
    Quote Originally Posted by jerryclunsford View Post
    Well,does it work or does it not? I would appreciate knowing.
    Suggest you read through this support thread...

  8. #18
    Join Date
    Dec 2007
    Location
    Hoboken, NJ
    Posts
    96
    Plugin Contributions
    1

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    I can try and help out with any specific issues. The mod does work but it requires that you follow the read me. Please post any issues and I will try and assist.

  9. #19
    Join Date
    Dec 2007
    Location
    Hoboken, NJ
    Posts
    96
    Plugin Contributions
    1

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    Quote Originally Posted by Dunk View Post
    Hi,

    Is there a dynamic drop downs support thread for this add on? Couldn't find a thread so here goes...

    I just added the dynamic drop downs add-on, I'm also running stock by attribute. The dynamic drop downs add-on seems to have removed all the stock numbers I had next to each attribute (not really an issue mind, I didn't like that feature), the problem is, I'm now able to add out of stock attributes and even the "select a size" value to the basket. It basically adds a product without any attributes at zero cost... which is a little annoying.

    Anyone know a) how to fix this, or b) how to remove this add-on?

    Thanks
    This was due to improper installation. Please review the documentation to ensure you completed every step.

    Cal

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

    Default Re: Problems with addon: Dynamic Drop Downs for Stock By Attribute

    Quote Originally Posted by modernm View Post
    I can try and help out with any specific issues. The mod does work but it requires that you follow the read me. Please post any issues and I will try and assist.
    Did that.. even sent you an e-mail with a link to the issue I posted about.. I long ago uninstalled this mod.. Perhaps if I have some time, I'll re-install on my test store, and re-post the issues I was having (which appear to be the SAME issues I saw others post about as well)..

    ETA: Found my previously reported issues:
    http://www.zen-cart.com/forum/showth...t=91232&page=3
    Last edited by DivaVocals; 11 Jan 2010 at 08:20 PM.

 

 
Page 2 of 6 FirstFirst 1234 ... LastLast

Similar Threads

  1. Replies: 9
    Last Post: 25 Jan 2014, 07:21 AM
  2. Dynamic drop downs for stock by attributes Help?
    By shahram in forum All Other Contributions/Addons
    Replies: 1
    Last Post: 4 Jul 2011, 08:46 PM
  3. Dynamic drop downs for stock by attributes
    By dthomas in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 9 Mar 2010, 02:46 AM
  4. Dynamic Drop Downs for SBA
    By laurenjj in forum All Other Contributions/Addons
    Replies: 3
    Last Post: 23 May 2009, 10:42 PM
  5. Error using Price Updater and Stock by Attributes Dynamic Drop Downs together
    By misscotton in forum Setting Up Categories, Products, Attributes
    Replies: 1
    Last Post: 31 Dec 2008, 12:24 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