I'm running a WooCommerce store and using the Woodmart theme along with Elementor. I'm encountering some issues when trying to enable social login for Facebook and Google.
It works flawlessly in my local environment:
http://localhost:10010/my-account/?opauth=
However, it doesn't seem to work in production:
http://mywebsite.com/my-account?opauth=
It's missing a "/"
I'm working in incognito.
I've followed this thread from the Woodmart creators
Which led me to this one. I tried to fix the issue by adding a few directives to my Nginx server:
fastcgi_buffers 16 16k;
fastcgi_buffer_size 32k;
proxy_buffer_size 128k;
proxy_buffers 4 256k;
proxy_busy_buffers_size 256k;
But still no luck. Any insights or suggestions would be greatly appreciated! Thanks in advance.