agentdesign
Forum Replies Created
-
Sure, glad to help!
That’s cool – it is serving is well!
We actually tried to develop a similar plugin ourselves for the same purpose but were working the other way around, hiding all and then selectively allowing some but also found the same issues in identifying good & bag notifications and where they were coming from since WP doesn’t offer an easy way to distinguish which ones are on all pages and which are on specific pages.
We like your approach more ??
Kudos on the new selective “Notification hiding” feature – exactly what I’ve been wanting for a long time – and very smart making it selective for hiding and unhiding them so that plugins like W3TC that we need notifications for we can still see. Thanks!
Forum: Plugins
In reply to: [WP Performance Pack] Gettext seems not to work with 4.9.1Seems to be fixed for us now, no idea how though?
- This reply was modified 7 years, 1 month ago by agentdesign.
Great – looking forward to seeing Clearfy becoming the most popular one-stop-shop for WP uncached optimisation!
Cool – really like where you are going with it – the hard part is staying motivated with projects like this but I hope we can help a little with that.
We’re based in Jersey, Channel Islands but have a mostly remote team around the World.
We have many languages in our team so I’ll ask around and see if anyone can help.
For anyone following my tips -try installing and enabling Query Monitor, then watching the Admin page load times, memory usage, number of queries and query times come down as you work through settings.
We were able to reduce Admin page queries by about 40% with all of the above, which will be a good reflection of your front-end uncached page load times too.
Forum: Plugins
In reply to: [WP Performance Pack] Gettext seems not to work with 4.9.1Same issue here, gettext not working with WPPP but a test php file on the server confirms it is present and correct:
<?php // Set language to German putenv('LC_ALL=de_DE'); setlocale(LC_ALL, 'de_DE'); // Specify location of translation tables bindtextdomain("myPHPApp", "./locale"); // Choose domain textdomain("myPHPApp"); // Translation is looking for in ./locale/de_DE/LC_MESSAGES/myPHPApp.mo now // Print a test message echo gettext("Welcome to My PHP Application"); // Or use the alias _() for gettext() echo _("Have a nice day"); ?>