Aleksandr Guidrevitch
Forum Replies Created
-
HI @outrankjames,
Would you mind sharing your problematic page url so I can check what’s wrong.
- Are you using Complianz?
- To disable plugin on certain pages, you can use wpmeteor_enabled filter, somewhere in you theme you can put the following code (NOT VERIFIED TO WORK):
add_filter('wpmeteor_enabled', function ($value) {
?? ? ? ? ? //checking for woocommerce
? ? ? ? ? if (function_exists('wc_get_cart_url') &&.
? ? ? ? ? ? ? function_exists('wc_get_checkout_url') &&
? ? ? ? ? ? ? ? function_exists('wc_get_endpoint_url')) {
? ? ? ? ? ? ? ? $home_url = home_url();
? ? ? ? ? ? ? ? $current_url = preg_replace('/\?.*/i', '', $url->get_url());
? ? ? ? ? ? ? ? //comparing with cart url
? ? ? ? ? ? ? ? if (wc_get_cart_url() != $home_url && wc_get_cart_url() == $current_url) {
? ? ? ? ? ? ? ? ? ? return false;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? //comparing with checkout url
? ? ? ? ? ? ? ? if (wc_get_checkout_url() != $home_url && wc_get_checkout_url() == $current_url) {
? ? ? ? ? ? ? ? ? ? return false;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? //comparing with new order url
? ? ? ? ? ? ? ? $order_received_url = wc_get_endpoint_url('order-received', null, wc_get_checkout_url());
? ? ? ? ? ? ? ? if ($order_received_url != $home_url && strpos($current_url, $order_received_url) !== false) {
? ? ? ? ? ? ? ? ? ? return false;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? ? ? //comparing with my-accoount url
? ? ? ? ? ? ? ? $my_account_url = get_permalink(wc_get_page_id('myaccount'));
? ? ? ? ? ? ? ? if ($my_account_url && $my_account_url != $home_url && $my_account_url == $current_url) {
? ? ? ? ? ? ? ? ? ? return false;
? ? ? ? ? ? ? ? }
? ? ? ? ? ? }
return true;
});
- This reply was modified 4 months, 3 weeks ago by Aleksandr Guidrevitch.
Forum: Plugins
In reply to: [WP Meteor Website Speed Optimization Addon] Embed TikTok video not showedPlease check v3.4.11, is adds a compatibility layer for Complianz
Forum: Plugins
In reply to: [WP Meteor Website Speed Optimization Addon] Embed TikTok video not showedThanks for reporting, let me see and get back to you!
@codepeople2 , thanks for the help!
oh, please also add jquery-core and jquery-migrate to the exclusion list, each on a new line
Please try 3.4.10, it should address the Complianz issue.
As to excluding Loading Page plugin, enable “Exclude scripts matching regexp from optimization”? and put there “codepeople-loading-page”
Please let me know how it goesHi @peopleinside ,
To avoid blank page, you should either disable loading page, or exclude loading-page.min.js along with jquery as it depends on jquery.
I’m looking into the second issueBest,
AlexForum: Plugins
In reply to: [WP Meteor Website Speed Optimization Addon] Script loading waited on JS file3.4.9 addresses the issue you flagged in the following way – if some 3rd party async script (non-render blocking) hangs, it times out in 1 second
Thank you so much for reporting, I really appreciate your help!
Best,
AlexHi @peopleinside ,
We’ve rolled the fix on the server side. Can you please enable fastpixel back and reset the cache to see if the bug is fixed for you?
@peopleinside, we’re looking into the issue, it seems that we were able to reproduce it
- This reply was modified 5 months ago by Aleksandr Guidrevitch.
Forum: Plugins
In reply to: [WP Meteor Website Speed Optimization Addon] Script loading waited on JS file@jkirrane, according to your description, the problem was with reddit pixel being inaccessible. I’m 99.99% sure it was related to the reddit connection issues either on your side, or at reddit side. This is why it worked with adblocker.
The only open question that bothers me is that pixels should be loaded async, so it shouldn’t affect page load.Forum: Plugins
In reply to: [WP Meteor Website Speed Optimization Addon] Script loading waited on JS fileHI @jkirrane ,
Would you mind sharing the URL of the site so I can reproduce the issue? WP Meteor can be disabled
Forum: Plugins
In reply to: [WP Meteor Website Speed Optimization Addon] Woocommerce PayPal CheckoutThank you for reporting the issue and for your feedback, I really appreciate every opportunity to make the plugin better!