Hi there,
Thanks for reaching out.
Can you please try to deactivate all the plugins and keep only WooCommerce and WooCommerce Blocks activated and see if you can replicate the issue? You can also switch to a default theme, like Storefront to make sure this issue isn’t coming from the theme you are using.
I just tried this plugin on my end, and I can see it’s working properly, so it seems like the issue is related to your specific installation.
Please let me know how it goes!
Best,
Hi,
Thanks for your response. I tried the following, however the issue still persist
1. I am presently using Edumall theme. I changed the theme to Astra, Hello Elementor, Storefront. In all the cases, as soon as I activate the WooCommerce Blocks plugin, it automatically goes to /checkout resulting in too many redirect errors.
2. I deactivated all plugins except Elementor Pro, Tutor LMS and Woocommerce and tried with the combination of above themes. The same issue persists the moment I activate the Woocommerce blocks plugin.
3. I also tried installing by searching for this plugin in WordPress dashboard instead of uploading it. Again the same issue upon activating the plugin.
The version I downloaded is 8.3.1
-
This reply was modified 1 year, 3 months ago by
vidhya1113.
Hi there @vidhya1113
Could you confirm if you tried the combination below?
– Plugins active: WooCommerce & Blocks
– Theme active: Storefront
– Try to open the site in a private browsing window
Let us know how this goes!
Also, can you check if there are any redirects added to your .htaccess
file? (https://www.google.com/search?q=htaccess+redirect)
Hello,
Sorry for the delay in getting back.
I tried with only keeping Storefront, woocommerce and blocks, but the issue persists
This is what I have in .htaccess
# HTTPS forced by SG-Optimizer
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP:X-Forwarded-Proto} !https
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
</IfModule>
# END HTTPS
# 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>
# END WordPress
-
This reply was modified 1 year, 3 months ago by
vidhya1113.
Hi @vidhya1113
Thanks for sharing the .htaccess
file.
I found a similar thread related to what’s happening on your site here.
Can you please mark everything as a comment by adding #
at the beginning of each code and see if that works? Here’s an example:
# HTTPS forced by SG-Optimizer
# <IfModule mod_rewrite.c>
# RewriteEngine On
# RewriteCond %{HTTP:X-Forwarded-Proto} !https
# RewriteCond %{HTTPS} off
# RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# </IfModule>
# END HTTPS
If you need help editing the .htaccess
file, please check this guide.
Hope this helps!