moisb
Forum Replies Created
-
Forum: Plugins
In reply to: [Debloat - Remove Unused CSS, Optimize JS] I have many AMP page errors.Hi @asadkn I detected the same error here. However, I use the AMP For WP plugin because I can customize it more easily: https://br.wordpress.org/plugins/accelerated-mobile-pages/
do you have any idea how I can solve this and keep using the 2 plugins?
- This reply was modified 4 years, 7 months ago by moisb.
Forum: Plugins
In reply to: [LiteSpeed Cache] Remove unused CSS and TTFB improveOk, it seems to be very interesting. But in my case it broke the page css, I think it’s because I’m on an Nginx server and Lightspeed was waiting for a .htaccess file to write the new rules.
However, after testing several plugins (practically all that exist) even on an Nginx server I decided to try Lightspeed last, and it’s amazing. I managed to improve the score for Core Web Vitals. Soon, I’m going to migrate my website to a Lightspeed server, to take advantage of the full potential of this wonderful plugin! Thanks again.Another question: I pay Cloudflare Pro and with official plugin with Automatic Platform Optimization (APO) enabled. If I connect the Cloudflare API via the Lightspeed Cache plugin, will I no longer need the official Cloudflare plugin? And is the APO function still working?
Forum: Plugins
In reply to: [LiteSpeed Cache] Remove unused CSS and TTFB improvethank’s @qtwrk follow report number: WUSFHZGN
thank you @isaumya yes, the official plugin I had already disabled. But I didn’t know that I needed to deactivate APO on Cloudflare panel. Now it looks like it worked!
another questions:
1) to satisfact Core Web Vitals warning “Serve static assets with an efficient cache policy” I selected “Browser Cache TTL = 1 year” on Cloudflare panel. This disrupts the plugin?
2) in the “Cloudflare Workers” section do I need to add another cookies? for plugins like Peepso and Gamipress, as their cookie is only useful for logged in users. For this type of plugin the cookie bypass “wordpress_logged_in_” that’s enough?
3) I use “Media Cloud” plugin to offload images to AWS S3, configured with cdn subdomain in my cloudflare dns. This plugin also has option to load CSS and JS from S3 via CDN. Combined with your plugin, if I enable this option to serve CSS/JS via S3 on “Media Cloud”, is it possible to gain more performance? Or does it make no difference?
and I want to take this opportunity to congratulate you for the amazing support here on the forum. I saw several threads, and you answer everything. Congratulations 👏
Thanks Aleksandr. Unfortunately I don’t have live url to debug because I had to disable Rocket Loader to get back functional site
thank you so much @aguidrevitch you are amazing. I started now testing WP Cloudflare Super Page Cache with WP Meteor and at first most features are working, with the exception of the Rocket Loader. when I activate Rocket Loader images, buttons and text with links are no longer clickable.
Hi Michael. My theme use “Breadcrumb NavXT” https://br.wordpress.org/plugins/breadcrumb-navxt/ I imagine the conflict is with this plugin from the Yoast 16.5.
I updated again now to the latest version 16.7 and added the suggested code to my functions.php:
add_filter( 'wpseo_schema_graph_pieces', 'remove_breadcrumbs_from_schema', 11, 2 ); function remove_breadcrumbs_from_schema( $pieces, $context ) { return \array_filter( $pieces, function( $piece ) { return ! $piece instanceof \Yoast\WP\SEO\Generators\Schema\Breadcrumb; } ); }this time it worked! The validation of structured content and location indicators are ok now
question: do you intend to change this behavior in future updates? Or I always need to keep the code “remove_breadcrumbs_from_schema” in my functions?
several versions have been released since the first report of this issue, but so far (version 16.7) it hasn’t been fixed. I’m testing every update, but I always need to rollback to version 16.4 to prevent my pages from becoming invalid for Google structured content. I leave a screenshot of the error pointed out by Rich Test Results
Same problem here. My theme use the plugin “breadcrumb navxt” and after the recent Yoast update, Yoast’s breadcrumb schema started to be injected into the source code, even though it was disabled in the settings. This is causing structured data error warnings in Google Webmaster Tools
PS: the “function remove_breadcrumbs_from_schema” didn’t work for me
I downgraded to version 16.4 and temporarily the issue is resolved. Waiting for a solution in the next update.resolved!
thank you @seoinfobeans worked perfectly. In my tests with lightspeed, there was no decrease in score when releasing the GTM
thank you Aleksandr. To contribute, knowing this filter I took the opportunity to search the WordPress documentation and I saw that it is also possible to make an array to add other types.
add_filter('wpmeteor_enabled', function ($enabled) { if ( is_singular(array('mycustomposttype', 'page')) ) { return false; } return $enabled; });in the future it might be interesting to add this as an option in the plugin settings 😉 I believe it very useful to have as an option for users with less knowledge, as the benefit of WP Meteor is essential on indexable pages for SEO, but in my view it is not worth it on non-indexable pages and if the user is logged in
it is probably a conflict with another plugin or proxy (example: cloudflare, sucuri etc).
if you want to show the link to the problem page, I can try to identify what is causing this conflict
Forum: Plugins
In reply to: [OG — Better Share on Social Media] First post image for og:image@iworks I’m glad you liked it. Who knows in the next update? 🙏
Forum: Plugins
In reply to: [Redux Framework] Only variables should be passed by referenceSame problem here, with other theme (coupon wp by famethemes):
[16-Mar-2021 09:10:40 UTC] PHP Notice: Only variables should be passed by reference in /htdocs/wp-content/plugins/redux-framework/redux-core/inc/classes/class-redux-functions-ex.php on line 312
[16-Mar-2021 09:10:43 UTC] PHP Notice: Only variables should be passed by reference in /htdocs/wp-content/plugins/redux-framework/redux-core/inc/classes/class-redux-functions-ex.php on line 311
Redux version: 4.1.24
- This reply was modified 5 years, 2 months ago by moisb.