Martin Kilarski
Forum Replies Created
-
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Developer Mode Enabled IssueWe have the same problem. The suggested solution didn’t help.
define(‘WP_DEBUG’, false);
The site is also hosted on Cloudways.
Feel free to let me know if you need more information.
Forum: Plugins
In reply to: [AMP for WP - Accelerated Mobile Pages] Seeing Script Errors On Homepage!Thanks.
Using the above code fixed the issue on my site.
All the best.
Forum: Plugins
In reply to: [Cookie Notice & Compliance for GDPR / CCPA] Removing cookie-notice-front-cssHey Bartosz,
Interesting, I wasn’t aware of that.
Thanks for the suggestion, it worked this time ??
Awesome plugin! Keep up the great work!
Pozdrawiam serdecznie,
MarcinExample:
“sameAs”: [
“https://www.facebook.com/example”,
“https://www.yelp.ie/biz/example”
],A user could add an additional link the same as the additional time pf opening hours is added by clicking on “plus” button.
I have created this as a new suggestion on Cloudways forum under Service Improvement > WordPress
https://feedback.cloudways.com/forums/203824-service-improvement/suggestions/13381302-ewww-image-optimizer-integrationYou can give your vote on this suggestion to make it happen.
Thanks nosilver4u, I am looking forward to hear back from you.
That’s a great news nosilver4u.
I have just checked WordPress debug file and I found these errors repeted few thousand times over last two weeks.
Hopefuly you will find these useful.
[04-Apr-2016 14:27:06 UTC] PHP Notice: Undefined index: ewww_wpnonce in /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-content/plugins/ewww-image-optimizer/common.php on line 2044
[04-Apr-2016 14:27:06 UTC] PHP Stack trace:
[04-Apr-2016 14:27:06 UTC] PHP 1. {main}() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-cron.php:0
[04-Apr-2016 14:27:06 UTC] PHP 2. do_action_ref_array() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-cron.php:117
[04-Apr-2016 14:27:06 UTC] PHP 3. call_user_func_array:{/home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/plugin.php:601}() /home/44258-36359.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/plugin.php:601
[04-Apr-2016 14:27:06 UTC] PHP 4. ewww_image_optimizer_auto() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/plugin.php:601
[04-Apr-2016 14:27:06 UTC] PHP 5. ewww_image_optimizer_aux_images_loop() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-content/plugins/ewww-image-optimizer/common.php:967
[04-Apr-2016 14:39:39 UTC] PHP Notice: Undefined index: 00 in /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/locale.php on line 287
[04-Apr-2016 14:39:39 UTC] PHP Stack trace:
[04-Apr-2016 14:39:39 UTC] PHP 1. shutdown_action_hook() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/load.php:0
[04-Apr-2016 14:39:39 UTC] PHP 2. do_action() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/load.php:635
[04-Apr-2016 14:39:39 UTC] PHP 3. call_user_func_array:{/home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/plugin.php:525}() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/plugin.php:525
[04-Apr-2016 14:39:39 UTC] PHP 4. wp_ob_end_flush_all() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/plugin.php:525
[04-Apr-2016 14:39:39 UTC] PHP 5. ob_end_flush() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/functions.php:3464
[04-Apr-2016 14:39:39 UTC] PHP 6. SU_Titles->change_title_tag() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-includes/functions.php:3464
[04-Apr-2016 14:39:39 UTC] PHP 7. SU_Titles->get_title() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-content/plugins/seo-ultimate/modules/titles/titles.php:146
[04-Apr-2016 14:39:39 UTC] PHP 8. WP_Locale->get_month() /home/my-site.cloudwaysapps.com/kjcepbyapj/public_html/wp-content/plugins/seo-ultimate/modules/titles/titles.php:198Thanks eapart for your input.
I have DigitalOcean server through Cloudways, but EWWW doesn’t work.
nosilver4u, I have disabled Lossy optimisation, but it still didn’t work. Here is the new debug file.
Thanks.
Thanks nosilver4u.
After I installed EWWW, for some reason I didn’t have the permission to ewww folder to 777. I restarted the permission on the server for this WordPress installation, then I successfully changed set them to 777.
Unfortunately, I still couldn’t install jpegtran and others.
I hope you will find this helpful.
Hi nosilver and Mark,
No, I haven’t solved the issue. Sorry nosilver for a late reply, but I didn’t get the notification that you wrote a comment.
Here is the debug information.
Thanks,
MarcinAfter modifying the above code, it stopped quick-style.css from loading. Here is the final bit I added to the functions.php file.
function custom_styles() { // remove "-css" at the end of the stylesheet wp_deregister_style( 'quick-style' ); wp_register_style( 'quick-style', '', false, false ); } add_action( 'wp_enqueue_scripts', 'custom_styles' );
Hi Josh,
Plugins used on the site make quick-style.css load so long. With deactivated plugins it loads normally. So guys from Themeum say that it’s not a theme fault and they don’t do customizations.
I have already tried adding following code to function.php to prevent the css file from loading. Unfortunately, it didn’t work.
function dequeue_my_css() { wp_dequeue_style('quick-style-css'); wp_deregister_style('quick-style-css'); } add_action('wp_enqueue_scripts','dequeue_quick-style-css'); // add a priority if you need it // add_action('wp_enqueue_scripts','dequeue_quick-style-css',100); // Register Style function custom_styles() { wp_deregister_style( 'quick-style-css' ); wp_register_style( 'quick-style-css', '', false, false ); } add_action( 'wp_enqueue_scripts', 'custom_styles' );
Do you know what else could I try to fix that issue?
Forum: Fixing WordPress
In reply to: migrating a database after moving a domainThank you for sharing this with me.
Thank you for the quick reply.
But why has the full image still 106kb? Does it mean that only some of the sizes were reduced? Is there a chance to check that?