fotske
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce created duplicated Checkout pagesIt doesn’t seem so strange because as I can see on the screenshot that @rainfallnixfig sent, he also seems to have to different Checkout pages (“ID:8” (which should be the original page) and “ID: 3900” (which was probably created later by WooCommerce)).
Why does this happen?
Forum: Plugins
In reply to: [WooCommerce] WooCommerce created duplicated Checkout pagesDear Mirko P. (@rainfallnixfig),
Thank you for your answer.
I did not re-run the WooCommerce setup wizard since I already have my website created with WooCommerce since several years.
So it’s strange that WooCommerce created a new “block version” of those pages. Is it normal or not?I don’t know if I should keep the old pages (made with the “Classic editor” several years ago when I created my website) or if I should now use the new pages made by WooCommerce with the “block editor”). Is there a difference between both?
And other question: imagine that I want to keep the new pages (for example “cart-2”), can I delete the original “cart” page and rename the “cart-2” page in “cart”? How can I do that (modifying the URL)?
Thank you very much for your help.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce created duplicated Checkout pagesThe problem also is that I have now a “https://www.mywebsitecom/cart/” page (= old page created with the old editor) and a “https://www.mywebsitecom/cart-2/” page (= new page created by WooCommerce with the new block editor)
Forum: Plugins
In reply to: [WooCommerce] Problem when updating to version 5.2.2.Hi again,
I see that this issue is known : https://wpml.org/errata/htaccess-is-rewritten-with-language-folder/
It is not due to WPML but it is due to your plugin.
The webpage that I sent you says: “The problem actually comes from certain third-party plugins calling flush_rewrite_rules(true) function too often.”
and: “The proper fix is for the third-party plugin to flush the rewrite rules only once.”Please take the necessary actions in your plugin to avoid this issue from happening in the future.
Kind regards
Hi,
The problem is still not solved in the 5.2.2 version of WooCommerce!
It’s been months that the issue is on Github!
No action is taken by your developers.
The problem should be solved in the next version, we cannot use the coupons because of this issue in your plugin!Please take actions now to solve this issue.
Forum: Plugins
In reply to: [WooCommerce] Problem when updating to version 5.2.2.Hi,
The problem was coming from the fact that the updating of the WooCommerce plugin made a modification in my .htaccess file and this created an internal server error.
I detail here the lines of code of the .htaccess files that have been modified by the updating of the plugin:
THIS IS THE .HTACCESS FILE BEFORE THE UPDATE OF THE WOOCOMMERCE PLUGIN TO VERSION 5.2.2:
# BEGIN WordPress # The directives (lines) between "BEGIN WordPress" and "END WordPress" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule>
THIS IS THE .HTACCESS FILE AFTER THE UPDATE OF THE WOOCOMMERCE PLUGIN TO VERSION 5.2.2:
# BEGIN WordPress # The directives (lines) between "BEGIN WordPress" and "END WordPress" are # dynamically generated, and should only be modified via WordPress filters. # Any changes to the directives between these markers will be overwritten. <IfModule mod_rewrite.c> RewriteEngine On RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] RewriteBase /en/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /en/index.php [L] </IfModule>
You can see that it added “/en” at some places.
How is that possible?
When I copy the old .htaccess code on my live website, the internal server error disappears.You should really try to understand how this could happen to prevent it from happening in future versions of WooCommerce.
Thank you very much in advance for your answer.
Hello @yordansoares ,
What do you mean that the WPML support is “rather limited”?
Thank you in advance.
Hi @rossviviano
Thank you very much for your answer.
Ok, I have disabled the PDT as your screenshot shows.
But your screenshot also shows that you disabled the “Auto Return”. However, I would like to bring my buyers back to my website after tha PayPal payment so I left “Auto return” enabled. Is that ok?Thank you very much in advance for your answer.
Best
Forum: Plugins
In reply to: [WooCommerce] 2 questions about PayPal standard settingsOk thank you for your help.
I’ll now leave the “Send shipping details to PayPal” option on as you suggest.Thank you for your help!
Forum: Plugins
In reply to: [Pixel Caffeine] Double counting of Add to cart eventHi @antoscarface ,
I had too many issues with the Pixel Caffeine plugin so I deleted it and I installed another plugin.
Sorry.Thanks for your help.
Forum: Plugins
In reply to: [WooCommerce] “Apply minimum order rule before coupon discount” does not workThe code that I gave you has nothing to do with that, sorry, it is a code concerning the tax behavior.
I made a full conflict test (I deactivated all the plugins except for WooCommerce and I switched to the TwentyTwenty theme) and the problem persists!
I really need your help to solve this problem.
I suspected another code which is in the fucntions.php of My Child Theme to be responsible of the problem.
I use this code to hide the shipping rates from the checkout when free shipping is available. It’s an official code from WooCommerce found here: https://docs.woocommerce.com/document/hide-other-shipping-methods-when-free-shipping-is-available/The code is:
/** * Hide shipping rates when free shipping is available. * Updated to support WooCommerce 2.6 Shipping Zones. * * @param array $rates Array of rates found for the package. * @return array */ function my_hide_shipping_when_free_is_available( $rates ) { $free = array(); foreach ( $rates as $rate_id => $rate ) { if ( 'free_shipping' === $rate->method_id ) { $free[ $rate_id ] = $rate; break; } } return ! empty( $free ) ? $free : $rates; } add_filter( 'woocommerce_package_rates', 'my_hide_shipping_when_free_is_available', 100 );
Can my problem be due to this code?
I don’t think so because I deleted this code from the functions.php file and made another test and the problem persists…Could you please help me solve this problem? I really need your help.
Thank you very much in advance.
Forum: Plugins
In reply to: [Facebook for WooCommerce] How to hide the parent product from the catalogue?Hi @kosiew ,
Do you mean that I would have to replace my variable product by 2 simple products?
That is not what I want, I want to keep only one product page with the choice of 2 variants (which are 40 gram and 100 gram).I just would like to sync only the 2 variants and not the parent product (which is logical).
If this option doesn’t exist (which seems very strange to me) could you please add this option in the next version of the plugin?Thank you very much in advance for your help.
Forum: Plugins
In reply to: [WooCommerce] “Apply minimum order rule before coupon discount” does not workDear @rodrigosprimo
Can my problem maybe be due to the fact that I have the following code added to the functions.php file of my Child Theme?
add_filter( ‘woocommerce_adjust_non_base_location_prices’, ‘__return_false’ ) ;Code found here: https://github.com/woocommerce/woocommerce/wiki/How-Taxes-Work-in-WooCommerce
See ? Prices including tax – Experimental Behavior ?.Thank you again for your help.
Forum: Plugins
In reply to: [WooCommerce] “Apply minimum order rule before coupon discount” does not workHi @rodrigosprimo,
I have exactly all the same settings as you but it doesn’t work for me.
The only difference that I have is that the “Flat rate” disappears when the amount for the free shipping is reached (which seems logical to me).
But when the 10% coupon is added, the free shipping option disappears and the flat rate appears again.
It is very annoying and I don’t see which plugin could interfere with that?!?Could you please help?
Thank you very much in advance.
Hi,
Could you please help me asap with this issue?
Why does the parent ID appears as a product into the feed?
How can I do to make it disappear from the product feed and only have the 2 variations?Thank you in advance for your help with this issue.