Boro Sitnikovski
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Shipping & Tax] After update, NO SHIPPING RATES AVAILABLE@mellowvision can you please submit a ticket through Woo support so that we can look into the issue in depth? Thank you!
Forum: Plugins
In reply to: [WooCommerce Shipping & Tax] Only US support?This error is specific to printing labels, the remainder of the functionalities should still work. We will rephrase the wording.
Forum: Plugins
In reply to: [WooCommerce] billing_state field required for Greece overrideHi,
Could you check if the following code snippet works for your case?
<?php add_filter( 'woocommerce_get_country_locale', function( $locale ) { $locale['GR']['state']['required'] = true; return $locale; } );
- This reply was modified 5 years, 8 months ago by Boro Sitnikovski.
- This reply was modified 5 years, 8 months ago by Boro Sitnikovski.
Forum: Plugins
In reply to: [WooCommerce] manualy add order stock problemHi,
Thank you for the detailed reproduction steps. I was able to reproduce, and thus confirm that the issue is there. I have created a GitHub issue, and the developers will follow-up there.
Best regards,
Boro
Forum: Plugins
In reply to: [WooCommerce] Everytime I try to edit a product it crashesHi there,
This kind of problem is usually caused by either a conflict with your theme or with another plugin.
?
The best way to determine this is to:
?- Temporarily switch your theme to Storefront
- Disable all plugins except for WooCommerce
- Repeat the action that is causing the problem
If you’re not seeing the same problem after completing the conflict test, then you know the problem was with the plugins and/or theme you deactivated. To figure out which plugin is causing the problem, reactivate your other plugins one by one, testing after each, until you find the one causing conflict. You can find a more detailed explanation on how to do a conflict test here.
Forum: Plugins
In reply to: [WooCommerce] Searching plugin to Increase prices with lower stockDynamic Pricing dynamically calculates the prices of products added to the cart. It needs the effective number of products to be able to hook into the price display, so it does not display the information on the product pages or in the catalogue. Most stores use banners or the product description instead to highlight these opportunities.
For your reference:?https://docs.woocommerce.com/document/woocommerce-dynamic-pricing/#why-do-advanced-rules-not-automatically-show-up-on-single-products-and-in-the-catalog
For quantities specifically, you can use this Gist as a filter, which should achieve what you want.
- This reply was modified 5 years, 8 months ago by Boro Sitnikovski.
Forum: Plugins
In reply to: [WooCommerce] What I really want in the backend!Hello,
It would be great to have you add your ideas to the [Ideas Board](https://ideas.woocommerce.com/forums/133476-woocommerce), which is where developers go to look for future plugin features and improvements.
Best regards,
Boro
Forum: Plugins
In reply to: [WooCommerce] X-Accel-Redirect/X-SendfileHello there,
WooCommerce should automatically handle that. You can see the actions are defined in the constructor of
WC_Download_Handler
, for bothwoocommerce_download_file_redirect
andwoocommerce_download_file_xsendfile
.Further, the method
download_file_xsendfile
will use the proper header (X-Sendfile
/X-Lighttpd-Sendfile
/X-Accel-Redirect
) depending on the environment, so all should be good.Thanks!
- This reply was modified 5 years, 8 months ago by Boro Sitnikovski.
Forum: Plugins
In reply to: [WooCommerce] Can’t Change Sale DateHey there!
Can you please provide more information to reproduce the issue? Here’s what I tried:
1. Create a Simple product
2. Set 15 regular price
3. Set 10 sale price with sale dates 2019-07-24 until 2019-07-31
4. Save the product
5. Enable inventory management and set stock 0
6. Save the product
7. Change sale dates
8. Save the productI was able to change the sale date using these steps.
In addition, I suggest doing a conflict test to determine if the issue is coming from another plugin and/or the theme you’re currently using. The best way to determine this is to:
?- Temporarily switch your theme to Storefront
- Disable all plugins except for WooCommerce
- Repeat the action that is causing the problem
If you’re not seeing the same problem after completing the conflict test, then you know the problem was with the plugins and/or theme you deactivated. To figure out which plugin is causing the problem, reactivate your other plugins one by one, testing after each, until you find the one causing conflict. You can find a more detailed explanation on how to do a conflict test here.