fhlinks
Forum Replies Created
-
Just updated to 2.7.3 everything works perfectly right now and looks amazing
https://imgur.com/YQANLr6And in source code qib-container only appears on single_variation_wrap (shop page)
I read the next release notes for the plugin, which mentions something about not displaying there for ‘bundled’ products, but haven’t updated it yet.Do bundled products mean group products or variable products?
Hi Taisho, yeah I’m looking into that at the moment.
Are you doing many updates this morning?
Noticed that the plugin has been going a bit bonkers with single products on archive pages (not sold individually).Displaying on qty & add to cart on archive, then not displaying etc – but still have all the right things on the product page itself.
(Not updated the plugin to the next version as yet)Seemed to update and fix when I logged into wordpress then 2 mins later reverted.
Am I going mad? LolsForum: Plugins
In reply to: [Qty Increment Buttons for WooCommerce] Quantity doesn’t stop at max-stockHi looking at mine – Re. the Hurry! Messaging – not sure if this is right, but worth looking at – it may be a functionality of the Woo show variations on plugin: https://imgur.com/ZbUww7y
Settings > Woo Variations > Scroll right to bottom of page
- This reply was modified 6 years ago by fhlinks.
Thanks very much for checking Taisho, not many developers would extend that level of suport. I really appreciate this and will offer a great review before updating to the latest version
Yes this is true, I think the duplicate +/- problem initially arose whilst looking at too many solutions at once. I forgot that code was placed from a previous recommendation on another thread.
I still see that there is an issue with the overflow on mobile devices for product pages, eg:
this page exampleIs there any way to resolve this?
Happy to post a screenshot if required
Please note, I am using the following code in functions.php to return + and – buttons on category pages. (I have now removed this but the plugin itself doesn’t seem to produce any buttons here now?)
/*Enable QTY btns on archive pages for simple products (Override loop template and show quantities next to add to cart buttons) */ add_filter( 'woocommerce_loop_add_to_cart_link', 'quantity_inputs_for_woocommerce_loop_add_to_cart_link', 10, 2 ); function quantity_inputs_for_woocommerce_loop_add_to_cart_link( $html, $product ) { if ( $product && $product->is_type( 'simple' ) && $product->is_purchasable() && $product->is_in_stock() && ! $product->is_sold_individually() ) { $html = '<form action="' . esc_url( $product->add_to_cart_url() ) . '" class="cart" method="post" enctype="multipart/form-data">'; $html .= woocommerce_quantity_input( array(), $product, false ); $html .= '<button type="submit" class="button alt">' . esc_html( $product->add_to_cart_text() ) . '</button>'; $html .= '</form>'; } return $html; }Same here,
Adds ?quantity=0 to select button urlThanks for replying Ashok