• Resolved IntellexualDesign

    (@intellexualdesign)


    I have removed and reinstalled woo commerce, removed and reinstalled the Virtue deactivated all plugins, and still products with variations cannot be added to the cart and I receive the “Please choose product options message”. Woo commerce is blaming Kadence (and other themes/plugins) and Virtue (Kadence) is blaming woo commerce. I really don’t care for the pissing contest between the two of you. All of us (I have read numerous threads with all these workarounds that don’t work) are tired of the BS and just want this fixed.

Viewing 14 replies - 1 through 14 (of 14 total)
  • I’m having the same issue. Hope this will be addressed soon. I tried adding a products with varations and couldn’t add them. Then I realized that any product with variations doesn’t work.

    I read in another thread that PHP needs to be updated. I’m currently running PHP 5.4.34. But according to this page it’s fine:

    https://docs.woothemes.com/document/how-to-update-your-php-version/

    I hope someone can get us an answer soon.

    Hey,
    There is an update for virtue that uses all of woocommerces current templates. You can download from here: https://downloads.www.ads-software.com/theme/virtue.2.5.3.zip

    IntellexualDesign, Did you ask woocommerce about the database updater?
    Did you show them that your issue happens regardless of what theme? That is important if you want to get them to help. Activate a twenty fourteen theme and they can see that your site doesn’t work. I hope you told them that. It’s not a blame game just gives theme important information.

    Kadence Themes

    I just kicked out an update that should help especially with lots of variations.

    https://downloads.www.ads-software.com/theme/virtue.2.5.4.zip

    Kadence Themes

    Thank you so much for this new update! Everything works fine now :).

    Thread Starter IntellexualDesign

    (@intellexualdesign)

    Hi @nexorito, unfortunately I’d done both of those and it didn’t work. I found another thread that eluded to 20 or less variations working – I ended up coming through all listing and removing a variation and it worked. Hopefully the update fixes it so I can add them back. I will try the update tonight.

    Hi, I have the same problem, even after updating to the latest Virtue theme update above (2.5.4). When I try to add to cart, I get the following message, “Sorry, no products matched your selection. Please choose a different combination.” The product is wooden letters so there’s 52 variations (26 letters x 2 sizes).

    Hey Funky Wood Worm,
    Does this happen when you activate a different theme also?
    When you updated woocommmerce did you run the database updater?
    If your using a caching plugin be sure to clear all the caching.
    Can you post a link?
    In the latest version of wooocmmerce if you have variations that are more then 30 in your product edit page woocommerce used ajax to calculate and add together. Try rebuilding the product with new variations if the above three didn’t help.

    Kadence Themes

    Thread Starter IntellexualDesign

    (@intellexualdesign)

    Just realized mine is still doing this as well with variations above 20. The most I have is 25, and it’s still not allowing an item to be added to the cart with more than 20 variations. I’ve run the updater, doesn’t happen when another theme is used. Here is an example:

    https://intellexual-design.com/product/emoji-toms/
    https://intellexual-design.com/product/circuit-board-custom-toms/

    Thread Starter IntellexualDesign

    (@intellexualdesign)

    @FunkyWoodWorm
    Check out this fix: https://woocommerce.wordpress.com/2015/07/13/improving-the-variations-interface-in-2-4/

    Finally something that works. Set the number to be returned for your site to something like 53 to ensure it returns all variations.

    Hi,
    Answers to your above questions in BOLD below:
    Does this happen when you activate a different theme also? YES, TRIED WITH TWENTYFOURTEEN
    When you updated woocommmerce did you run the database updater? YES
    If your using a caching plugin be sure to clear all the caching. DONE, USING W3 TOTAL CACHE PLUGIN & CACHE CLEARED
    Can you post a link? https://FUNKYWOODWORM.COM
    In the latest version of wooocmmerce if you have variations that are more then 30 in your product edit page woocommerce used ajax to calculate and add together. Try rebuilding the product with new variations if the above three didn’t help. I NEED THE 52 VARIATIONS, BUT I’M UNSURE HOW TO IMPLEMENT THE FIX THAT @intellexualdesign MENTIONS ABOVE.

    What happened when you tried with twenty-fourteen?

    I think @intellexualdesign is referring to adding this to your child theme functions.php file? That would just show all the variations on one page? I’m assuming that helped here server save the variations correctly?

    function custom_wc_admin_variations_per_page( $qty ) {
    	return 20;
    }
    add_filter( 'woocommerce_admin_meta_boxes_variations_per_page', 'custom_wc_admin_variations_per_page' );

    Kadence Themes

    Hi,
    When I did a live preview of twentyfourteen the result was the same as virtue.
    My understanding of @intellexualdesign solution was to amend the front-end rather than the back-end using the “woocommerce_ajax_variation_threshold:”, i.e.
    function custom_wc_ajax_variation_threshold( $qty, $product ) {
    return 10;
    }

    add_filter( ‘woocommerce_ajax_variation_threshold’, ‘custom_wc_ajax_variation_threshold’, 10, 2 );

    However, I don’t know how to find or amend this?? She recommends changing to 53, but where in the code?

    Hi,
    Just updated WooCommerce to 2.4.6 & variation issue resolved!

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Variation Selection/Add to Cart not working after update’ is closed to new replies.