Aleksandr Guidrevitch
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Meteor Website Speed Optimization Addon] Exclusion for Loading ScreenHi @petitebaleine ,
Which provider do you use? I might try to detect the provider to turn the optimization off when they check for cookies. Alternatively, you can set zero delay, parse the site by provider, turn the optimization back
Best,
Alex- This reply was modified 1 week ago by Aleksandr Guidrevitch.
Thank you @ljosh for kind words, I really appreciate that!
I think this is related to one of your browser extensions or plugins. Unfortunately, I can’t reproduce that. Can you please try to reinstall the plugin?
@ljosh , thanks for reporting. Should be fixed in 3.4.12! Please give it a try
- This reply was modified 2 weeks, 6 days ago by Aleksandr Guidrevitch.
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 2 weeks, 6 days 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 1 month ago by Aleksandr Guidrevitch.