abwaita a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Unique user password to access protected category?Hi,
We’ve not heard back from you in a while, so I’m marking this thread as resolved. Hopefully, the above plugin suggestion was helpful!
If you have further questions, please feel free to open a new topic.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] WC Currency Switcher Hide Payment GetawayYou’re welcome!
I’ll go ahead and mark this thread as resolved from this side.
If you have any further questions, feel free to create a new thread.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Manage the product stock variable goodsHi @wshou,
Apologies for the delay here. Currently, only those two stock management options are available for variable products. However, I welcome you to submit this as an idea on our Ideas Board https://ideas.woocommerce.com/.
That said, there are plugins that offer a way of sharing inventory between variations. I would recommend taking a look at this – https://woocommerce.com/products/variation-shared-inventory-for-woocommerce/.
Feel free to explore further for more options.
Thanks.Forum: Plugins
In reply to: [WooCommerce] Force Download Stops at 1024 MBHi @aawez,
Apologies for the delay here.
Just to highlight, there are two things to keep in mind with the Force Download method: file size and server resources. Large files and/or limited server resources may lead to timeouts.
If you could test this, when you allocate more memory space to WP, say 2048M, do you see a significant improvement?
Also, have you tried the alternative of X-Accel-Redirect/X-Sendfile? It’s the most reliable method because the file is served directly to the customer and gives you the best performance.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Product tags with starting letter a dont appear in tag cloudGlad to hear @rainfallnixfig’s info was helpful – thanks for the update!
I’ll mark this thread as resolved now. If you have any further questions, I recommend creating a new thread.
Cheers!
Forum: Plugins
In reply to: [WooCommerce] WC Currency Switcher Hide Payment GetawayHi @thmthoom,
Thanks for mention the plugin that you’re using for this functionality. In this case, I would recommend getting in touch with the plugin authors of the WC Currency Switcher plugin to check the issue further.
* If it’s the WOOCS – WooCommerce Currency Switcher, you should be able to get assistance here – https://codecanyon.net/item/woocommerce-currency-switcher/8085217/support.
Hope this helps.
Thanks.Forum: Plugins
In reply to: [WooCommerce] Remove itemsHi @danielbmxd,
I found the following custom code from this article and it seems to be working well:

Link to image: https://snipboard.io/DgH2IY.jpgfunction orb_check_for_out_of_stock_products() { if ( WC()->cart->is_empty() ) { return; } $removed_products = []; foreach ( WC()->cart->get_cart() as $cart_item_key => $cart_item ) { $product_obj = $cart_item['data']; if ( ! $product_obj->is_in_stock() ) { WC()->cart->remove_cart_item( $cart_item_key ); $removed_products[] = $product_obj; } } if (!empty($removed_products)) { wc_clear_notices(); // remove any WC notice about sorry about out of stock products to be removed from cart. foreach ( $removed_products as $idx => $product_obj ) { $product_name = $product_obj->get_title(); $msg = sprintf( __( "The product '%s' was removed from your cart because it is out of stock.", 'woocommerce' ), $product_name); wc_add_notice( $msg, 'error' ); } } } add_action('woocommerce_before_cart', 'orb_check_for_out_of_stock_products');* I recommend using Code Snippets to add custom code to your site.
Let us know how it goes.
Thanks.Forum: Plugins
In reply to: [WooCommerce] Products per page showing incorrectHi @alanmj,
Testing the function, I am able to get the site to show 24 products while running on the Twenty Twenty-One theme:
add_filter( 'loop_shop_per_page', 'new_loop_shop_per_page', 20 ); function new_loop_shop_per_page( $cols ) { $cols = 24; return $cols; }Thus, it might be that you have another tool interfering with this function on your site. Keep in mind that some themes have inbuilt controls to change the number of products displayed, which might be causing an issue.
I’d first recommend checking whether this issue persists when on a default WordPress theme like Twenty Twenty-One with all plugins disabled apart from WooCommerce. Here’s the conflict test guide for reference – https://docs.woocommerce.com/document/how-to-test-for-conflicts/.
If the issue is with your theme, you’ll want to check if it has any inbuilt controls to change the number of products on the shop page. Normally, you will find these controls in your Customizer → WooCommerce.
Let us know how it goes.
Thanks.Forum: Plugins
In reply to: [WooCommerce] Woocommerce Subscriptions Plugin ErrorHi @szdlmyrb,
Just to check, which subscriptions plugin are you using?
If you’re using our WooCommerce Subscriptions extension, we’ll be happy to assist further. Please create a support ticket at WooCommerce.com > My Account > Support. You may need to login to your WooCommerce account before you can access that page.
*If you’re using a different plugin, be sure to reach the relevant plugin author for assistance.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Unique URL slug for variable productGlad to hear back from you!
It’s good to know that Products By Attributes & Variations for WooCommerce is suitable here. We’d like to explain further, but we’re not able to discuss paid extensions on the forums.
Thus, please contact us via a presales ticket at WooCommerce.com > My Account > Support. You may need to login to a WooCommerce account before you can access that page.
Please include a link to this forum thread.
We will be able to help you further there.
Forum: Plugins
In reply to: [WooCommerce] Cant remove product variations after updateHi @hmarksthespot,
In most cases, such backend issues are caused by plugin/theme conflicts with WooCommerce.
Thus, I would recommend that you do a conflict test to see whether you can identify the tool causing the issue. Here’s the conflict test guide – https://docs.woocommerce.com/document/how-to-test-for-conflicts/
If the cause is not apparent after doing the conflict test, could you please share a copy of your site’s System Status? You can find it via WooCommerce > Status. Select “Get system report” and then “Copy for support”. Once you’ve done that, paste it here in your response.
Let us know how it goes.
Thanks.Forum: Plugins
In reply to: [WooCommerce] Variations that do not have a price, still showing!Checking the GitHub issue, it’s still open so a fix is still being worked on by developers.
Thus, for now, I would recommend creating your variations in small batches, just like the user in this thread – https://wordpress.org/support/topic/product-with-variations-shows-product-without-a-price/page/2/#post-14792382.
Alternatively, you could consider using product add-on plugins to reduce the number of actual variations on your product to less than30 variations. Some plugins you might look at include:
* https://woocommerce.com/products/product-add-ons/
* https://codecanyon.net/item/woocommerce-extra-product-options/7908619Lastly, it would be great to post a comment on the GitHub thread for developers to treat it as another case.
Thanks.
Thanks a lot for this.
As we’d like to test the issue, is it possible to temporarily remove the access restriction on your staging site to facilitate this?
Further, could you also check:
* If the issue comes up when the customer’s shipping country is Romania
* If you’ve set up any restrictions that would prevent shipping to Romania in WooCommerce → Settings → General → Shipping location(s).Note: Just to mention, I’ve tested on the main site (I removed the
/mkg4u) but the issue is not present. Here’s what I see on the checkout page:
Link to image: https://snipboard.io/P2YcrS.jpgThus, let us know if this issue happens on the main site when you check on your end.
Thanks.
Forum: Plugins
In reply to: [WooCommerce] Disable checkout unless ZIP code matches Country codeHi @guev4ra,
Thanks for the details you shared, the screenshots offer a good context.
The behavior seems normal, if the client is not in a region where tax rates are defined, they get charged 0 tax.
Thus, you’ll want to focus on restricting shipping if the client does not have a valid Zip code. You can do so by using shipping zones as explained here – https://docs.woocommerce.com/document/setting-up-shipping-zones/
Another approach would be to use plugins that conditionally hide shipping methods if a customer is outside certain zip codes. Some plugins you can use include:
* https://woocommerce.com/products/conditional-shipping-and-payments/
* https://wordpress.org/plugins/conditional-shipping-for-woocommerce/Hope this helps, we’ll be happy to be of further assistance.
Many thanks.Thanks for getting back.
In that case, we’d like to check this further. Please share with us:
* Your shipping settings (shipping zones + methods) from WooCommerce → Settings → Shipping
* Your site’s System Status – You can find it via WooCommerce > Status. Select “Get system report” and then “Copy for support”. Once you’ve done that, paste it here in your response.We’ll be happy to be of further assistance.
Many thanks.