Aethon
Forum Replies Created
-
Thank you!
OK.. thanks anyway but I managed to do this with code directly. Thanks very much!
OK thank you very much ??
No.. sorry but thanks for responding.
I meant with a simple step – like turning off the plugin — to temporarily open the entire site up and not protect any content.
- This reply was modified 3 years, 3 months ago by Aethon.
Actually… please ignore this. I had another plugin still active (WP extended search) and after deactivating it, it seems to be much better!
Sorry for confusion.
Forum: Plugins
In reply to: [Jetpack - WP Security, Backup, Speed, & Growth] Critical errosHey.. it was blocking the update of my theme and other plugins…. I just disabled it during that.. but even deactivated, there’s issues:
WebSocket connection to 'wss://public-api.wordpress.com/pinghub/wpcom/me/newest-note-data' failed: Error during WebSocket handshake: Unexpected response code: 403 g @ ?v=2.0:6 T @ ?v=2.0:6 j @ ?v=2.0:6 load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 POST https://mysite.com/wp-admin/admin-ajax.php 503 (Service Unavailable) send @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 ajax @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 s.ajax.s.ajax @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:5 l @ heartbeat.min.js?ver=5.6:2 d @ heartbeat.min.js?ver=5.6:2 v @ heartbeat.min.js?ver=5.6:2 (anonymous) @ heartbeat.min.js?ver=5.6:2 dispatch @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 v.handle @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 POST https://mysite.com/wp-admin/admin-ajax.php 400 (Bad Request) send @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 ajax @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 s.ajax.s.ajax @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:5 window.jpTracksAJAX.record_ajax_event @ tracks-ajax.js?ver=9.3.1:15 (anonymous) @ tracks-ajax.js?ver=9.3.1:50 dispatch @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2 v.handle @ load-scripts.php?c=0&load[chunk_0]=jquery-core,jquery-migrate,utils,jquery-ui-core,moxiejs,plupload&ver=5.6:2
- This reply was modified 4 years, 1 month ago by Aethon.
Forum: Plugins
In reply to: [WP Post Nav] I’ve got it working great on desktop version, butAhhh.. I see that it DOES disappear when at the end… I guess in this strange case, there is a newer post in another language… anything I can change in the back to stick to the same language AND category?
Thanks very much!
Forum: Plugins
In reply to: [Translate Wordpress with GTranslate] This plugin is not working anymore?I had just figured it out an hour before your message and had logged on to delete my embarrassing question. ?? . Thanks for pointing it out though!
Forum: Plugins
In reply to: [WooCommerce] Geolocation with page caching support – ONLY on cart/checkoutHmmm… I realized that cart and checkout are not cached usually…… so.. why do I need to save the Customer Location as Geolocation withh Page Caching Support?
Can I just go back to plain “Geolocation”?
Forum: Plugins
In reply to: [WooCommerce] Geolocation with page caching support – ONLY on cart/checkoutOK this is annoying.. when I look at the cart page.. there is no $%#$# query string! Why not there? That’s where it should be, no? To allow for different prices depending on geolocation?
Help please! Can anyone help me make sense of this?
Thanks!
Forum: Plugins
In reply to: [WooCommerce] Geolocation with page caching support – ONLY on cart/checkoutOr maybe I should be doing this in htaccess?
Hmm… OK.. time to learn something new…
Forum: Plugins
In reply to: [WooCommerce] Geolocation with page caching support – ONLY on cart/checkoutI changed the $url line into :
$url = "https://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI']; shapeSpace_remove_var($url, 'v');
Still no luck!
Forum: Plugins
In reply to: [WooCommerce] Geolocation with page caching support – ONLY on cart/checkoutOK.. that removed query strings from .js and .css but I added this for the url (index, etc) and still not working :
if ( ! is_cart() && ! is_checkout() ) { //Remove query strings from static resources function ewp_remove_script_version( $src ){ return remove_query_arg( 'ver', $src ); } add_filter( 'script_loader_src', 'ewp_remove_script_version', 15, 1 ); add_filter( 'style_loader_src', 'ewp_remove_script_version', 15, 1 ); // Remove query string from static files function remove_cssjs_ver( $src ) { if( strpos( $src, '?ver=' ) ) $src = remove_query_arg( 'ver', $src ); return $src; if( strpos( $src, '?v=' ) ) $src = remove_query_arg( 'v', $src ); return $src; } add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 ); add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 ); function shapeSpace_remove_var($url, $key) { $url = preg_replace('/(.*)(?|&)'. $key .'=[^&]+?(&)(.*)/i', '$1$2$4', $url .'&'); $url = substr($url, 0, -1); return ($url); } $url = "https://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; shapeSpace_remove_var($url, 'v'); }
Forum: Plugins
In reply to: [WooCommerce] Geolocation with page caching support – ONLY on cart/checkoutOK.. not working and neither is this :
if ( ! is_cart() && ! is_checkout() ) { //Remove query strings from static resources function ewp_remove_script_version( $src ){ return remove_query_arg( 'ver', $src ); } add_filter( 'script_loader_src', 'ewp_remove_script_version', 15, 1 ); add_filter( 'style_loader_src', 'ewp_remove_script_version', 15, 1 ); // Remove query string from static files function remove_cssjs_ver( $src ) { if( strpos( $src, '?ver=' ) ) $src = remove_query_arg( 'ver', $src ); return $src; if( strpos( $src, '?v=' ) ) $src = remove_query_arg( 'v', $src ); return $src; } add_filter( 'style_loader_src', 'remove_cssjs_ver', 10, 2 ); add_filter( 'script_loader_src', 'remove_cssjs_ver', 10, 2 ); }