ngrudev
Forum Replies Created
-
You can see the problem also on your LIVE DEMO site. Just test it. If you click on on “Select options” button without choosing any attribute, the button gets stuck on loading mode, instead of redirecting to signle product page.
https://demo.getwooplugins.com/woocommerce-variation-swatches/?_gl=119vg4jj_gaMTUzNzQ1ODgzNS4xNjc5MzE1MjAy_ga_X7JH3W01NMMTY3OTM5OTkxMi4zLjEuMTY3OTM5OTk3MC4wLjAuMA.._ga_Y7B0DXDGE4*MTY3OTM5OTkxMi4zLjEuMTY3OTM5OTk2Mi4wLjAuMA..&_ga=2.87015896.1908165883.1679317376-1537458835.1679315202
Forum: Plugins
In reply to: [Autologin Links] Auto create autologin link when user is createdIt still works fine with me. Just tested it.
Forum: Plugins
In reply to: [Products Restricted Users for WooCommerce] Not compatible with WordPress 6.1Now it works fine. Thank you
Forum: Plugins
In reply to: [Products Restricted Users for WooCommerce] Not compatible with WordPress 6.1I am running Multisite environment. Maybe thats the case…
Forum: Plugins
In reply to: [Products Restricted Users for WooCommerce] Error installingThe plugin is not compatible with wordpress 6.1
Issue is resolved. The problem is in my custome code. I should remove or comment the line with code
//add_to_cart_button.attr( “href”, “?add-to-cart=” + add_to_cart_button.attr( “data-product_id” ) + “&quantity=” + jQuery( this ).val() );
In my case I use ajax and this piece of code should be removed/commented.
I confirm there is the same issue with the Storefront theme.
I forgot to mention that I use custom code to show quantity box on the shop page.
/** * Add quantity field on the archive page. */ function custom_quantity_field_archive() { $product = wc_get_product( get_the_ID() ); //if ( ! $product->is_sold_individually() && 'variable' != $product->product_type && $product->is_purchasable() ) { //niki. ako ne go iskash za variable products. az go iskam if ( ! $product->is_sold_individually() && $product->is_purchasable() ) { woocommerce_quantity_input( array( 'min_value' => 1, 'max_value' => $product->backorders_allowed() ? '' : $product->get_stock_quantity() ) ); } } add_action( 'woocommerce_after_shop_loop_item', 'custom_quantity_field_archive', 8, 9 ); function custom_add_to_cart_quantity_handler() { if (function_exists('is_woocommerce')) { wc_enqueue_js( ' jQuery( "body" ).on( "click", ".quantity input", function() { return false; }); jQuery( "body" ).on( "change input", ".quantity .qty", function() { var add_to_cart_button = jQuery( this ).parents( ".product" ).find( ".add_to_cart_button" ); // For AJAX add-to-cart actions add_to_cart_button.attr( "data-quantity", jQuery( this ).val() ); // For non-AJAX add-to-cart actions add_to_cart_button.attr( "href", "?add-to-cart=" + add_to_cart_button.attr( "data-product_id" ) + "&quantity=" + jQuery( this ).val() ); }); ' ); } } add_action( 'init', 'custom_add_to_cart_quantity_handler' );
Forum: Plugins
In reply to: [Products Restricted Users for WooCommerce] Missing “Add to cart” buttonsI have the same problem . I rolled back to version 0.2.2
Forum: Plugins
In reply to: [Products Restricted Users for WooCommerce] Huge problem in version 0.3The problem still occures in version 0.4. Non registered user just don’t have “Add to cart” button !! Downgrade to 0.2.2
Forum: Plugins
In reply to: [BulkGate SMS Plugin for WooCommerce] Cannot send VIber Message to clientThank you ?? I did it just now.
The idea is to change the background-positon (the focus) of the image when resizing. I dont want to change the margins.
Sorry, the site is https://www.anchialo.bg
Works perfect now! 2 of 2 issues are resolved. Great support. Plugin is better now ??
Thank you
TO simulate it *when Braintree plugin is activated) first add some products in the basket and go to checkout page (just go there, don’t place order). Then return to edit-address/billing and try to change something (Billing name, phone.. wahatever) and then save it. After page reload in my case everything is missing. This is how I reproduce the problem. Deactivating one of both Braintree or Cartbounty plugin, no issue is observed. The point is I need the both plugins working together ?? I test this on Singe and Multisite networks and is the same.
I found incompatibility with “Braintree For WooCommerce” plugin, which I use for receiving card payments. This is the plugin page: https://www.ads-software.com/plugins/woo-payment-gateway/
If I deactivate it the issue on edit-address page is resolved. What should I do?