yondermann
Forum Replies Created
-
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed not delaying .jsYeah, but I put test123 in the JS Delayed Includes field.
Now, I put in the “JS Dlayed Includes” these:
/wp-content/plugins/wp-recipe-maker/dist/public-modern.js
/wp-content/plugins/wp-recipe-maker-premium/dist/public-pro.js
then purge all – css/js cache
Report number: TSJKXNOS
Report date: 11/25/2024 15:04:40
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed not delaying .jsI’ve just sent a new one:
Report number: USERRWDZ
Report date: 11/25/2024 13:22:59
Forum: Fixing WordPress
In reply to: Can’t access wp-admin.phpAny idea what should I do next or where to go for help?
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed not delaying .jsI’ve done it but haven’t saved the report number… do you need it?
Forum: Plugins
In reply to: [LiteSpeed Cache] Litespeed not delaying .jsWell, that could explain things because I have the js delay include field filled with these lines:
https://www.dropbox.com/scl/fi/xyghm2oabrpmx12ga12cf/delay-doesn-t-work.jpg?rlkey=ku5bju2avlvk60abaytm50gjk&dl=0- This reply was modified 1 week ago by yondermann.
Forum: Fixing WordPress
In reply to: Can’t access wp-admin.phpI’ve enabled debugging and added the required code to the wp-config.php :
// Enable WP_DEBUG mode
define( ‘WP_DEBUG’, true );
// Enable Debug logging to the /wp-content/debug.log file
define( ‘WP_DEBUG_LOG’, true );
// Disable display of errors and warnings
define( ‘WP_DEBUG_DISPLAY’, false );
@ini_set( ‘display_errors’, 0 );
// Use dev versions of core JS and CSS files (only needed if you are modifying these core files)
define( ‘SCRIPT_DEBUG’, true );No debug.log file was created. I created a debug.log file to see if it gets populated but nothing was written there. I suppose this means that there were no errors, right?
Forum: Fixing WordPress
In reply to: Can’t access wp-admin.phpOn the page you linked it says I’m an administrator. I also have two editors and those two have restricted privileges.
I’ve created new admin accounts just to see if those would work but they are the same as mine. I also checked and changed file permissions but it didn’t make a difference either.
Forum: Fixing WordPress
In reply to: Can’t access wp-admin.phpYes indeed. I meant wp-admin/ .
I get redirected to the https://www.suncakemom.com/wp-admin/ page after logging in. I get this message:
Sorry, you are not allowed to access this page.But if I go to https://www.suncakemom.com/wp-admin/edit.php I can see all the posts and do whatever admins can do except the above already mentioned limitations.
Thanks!
Forum: Plugins
In reply to: [LiteSpeed Cache] Core web vitals errorThat blog post says nothing about why google mobile bot is incompatible with guest mode.
The speed scores are mostly fine. This is only a best practices error which doesn’t really impact anything probably. Still it would be nice to eliminate it.Forum: Plugins
In reply to: [LiteSpeed Cache] Core web vitals errorSo you say if this isn’t solved then enabling guest mode and guest optimization has no effect whatsoever?
Forum: Plugins
In reply to: [LiteSpeed Cache] Core web vitals errorThere is antispam bee and loginizer installed. If antispam bee is deactivated nothing happens. If Loginizer is deactivated the same error is still logged with the only difference that there are a bunch of .js errors also being logged. The cache is purged after each activation and deactivation.
Forum: Fixing WordPress
In reply to: wp-admin access not allowedUpon further investigation, it was pointed out that the site has no HOME menu. On the left hand side menu area between the dashboard and the updates menu there supposed to be a HOME menu. It is not there.
Hi,
The link should be working now. There was a problem with hosting in the past couple of days but you can check any post. The same thing happens.
I can not exclude these images as these images are the very reason I use lazy load. This is a recipe site and all steps have an image added to them.
I don’t know if excluding only one image could be an option but that would be really inconvenient to apply to all present and future posts.
Yes, we are talking about the social share module of Hustle.
Hi again,
I’ve just updated the plugin and tested the plugin and found out why some images are not showing when I click on the pinterest share button.
I lazy load the images with w3 cache plugin and it seems that until the images aren’t loaded on the page the pinterest sharing pop up not showing them.
Is there a way to make them show up in the plugin without loading them all to the page?
Forum: Themes and Templates
In reply to: [Kale] BreadcrumbsI’ve solved it adding this:
<!– Breadcrumbs –>
<?php
if ( function_exists(‘yoast_breadcrumb’) ) {
yoast_breadcrumb( ‘<p id=”breadcrumbs”>’,'</p>’ );
}
?>
<!– /Breadcrumbs –>to the pages, posts and categories in the theme editor.
Thanks!- This reply was modified 4 years, 2 months ago by yondermann.