astroids
Forum Replies Created
-
Right sidebar:
https://prnt.sc/vrjrnfTop of 2nd column:
https://prnt.sc/vrjrpwBottom of Property Setup Field group
https://prnt.sc/vrjrrkActivate UA for this property:
https://prnt.sc/vrjrsz- This reply was modified 5 years, 5 months ago by astroids.
Read this:
https://support.google.com/analytics/answer/9539598?hl=en#:~:text=If%20you%20set%20up%20a%20Universal%20Analytics%20(%22Web%22),with%20%22UA%2D%22).See here:
You want to TURN ON Universal Analytics (“Web”) property
I second this motion!
I cannot connect with the wizard.
No more UA-xxx codes give anymore. Help!
Forum: Networking WordPress
In reply to: localhost using HTTPSYes, plugins like ithemes security and many others have a “force ssl” or similar option, so best to
wp plugin deactivate --all– if that works, thenwp plugin activate --alland deactivate one-by-one to isolate the offending plugin.Forum: Networking WordPress
In reply to: localhost using HTTPS4. activate the 2020 or 2019 WP theme, see if that fixes it. If not revert.
5. Disable all plugins (with wp cli):
cd to webroot:
wp plugin deactivate –all
(check and see if that fixed it)Re-enable all plugins w/
wp plugin activate –allForum: Networking WordPress
In reply to: localhost using HTTPSLong shot, but:
1. Disable Woocommerce, see if that fixes it for you. If so, check the SSL setting in WC->Settings->Advanced
2. Try using:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTPS} on
RewriteRule ^ http://%{HTTP_HOST}%{REQUEST_URI} [R=301,L,NE]
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>in your .htaccess – I noticed ur one on page01 had the dir path in it.
3. Install WP CLI
https://wpbeaches.com/install-wordpress-wp-cli-mac-osx/
cd to your webroot, then run:
wp search-replace ‘https’ ‘http’Ran into a similar issue, ended up re-installing XAMPP-WM
Forum: Plugins
In reply to: [BLAZING Email Transfer Payment Gateway] Woocommerce 3.0 ErrorsErrors seem to be fixed by:
Find and replace:
1)
$order->reduce_order_stock(); TO wc_reduce_stock_levels( $order_id );
2)
$order->payment_method TO $order->get_payment_method()
3)
$order->id TO $order->get_order_number()