ewd910
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: wp–style–block-gap different on staging and production sites@rider7991 Installing Gutenberg fixed this for me as well! Thanks! I too would love to know what was going on, I’ll update this thread if I learn anything
Forum: Fixing WordPress
In reply to: wp–style–block-gap different on staging and production sites@rider7991 interesting. I’ll try installing gutenberg. Are you using it for anything or does it just have to be present and activated?
I updated to WP 6.1 which changed the CSS classes that handle the block gap but the issue remains. It’s not any setting or anything in the DB because I cloned the database for the problem instance and replaced my local with it, but I still couldn’t replicate the problem.
Forum: Fixing WordPress
In reply to: wp–style–block-gap different on staging and production sitesWhen I connect to my production database from my localhost environment the issue persists, so I don’t think it’s an improperly configured setting. However the code running on my production environment matches my local as well, so not sure where else to check.
I discovered that
body{--wp--style-block-gap: 24px;}.wp-site-blocks
is missing from theglobal-styles-inline-css
style element which is causing the issue, but I don’t know why that isn’t being renderedForum: Fixing WordPress
In reply to: wp–style–block-gap different on staging and production sitesWordpress 6.0.3, and we are not using the Gutenberg plugin, just the default WP block editor
Forum: Fixing WordPress
In reply to: wp–style–block-gap different on staging and production sitesI’ve found that the definition for that variable is missing from
global-styles-inline-css
in the header but I’m still not sure why that isThat worked, thanks!
Forum: Fixing WordPress
In reply to: removing inactive themes & default themesThat gives me the “You should remove inactive themes” security warning. Is that supposed to be ignored? What is the purpose of the warning then?
Forum: Plugins
In reply to: [Private groups] Out of memory errors on settings pagesThat seems to work!
Forum: Plugins
In reply to: [Private groups] Out of memory errors on settings pagesYes I can change whatever code is needed
Forum: Plugins
In reply to: [Private groups] Out of memory errors on settings pagesIt’s user management and management information as well. I also get an out of memory exception (my memory limit is set at 512MB) when trying to access these pages if they do load at all.
Forum: Plugins
In reply to: [Private groups] Assign groups to roles errorYes I can edit whatever code is needed, though I hope to find a solution that wont break with any future updates
Forum: Plugins
In reply to: [Gutenberg Block Editor Toolkit – EditorsKit] editor plus php errorNo, I was just viewing the page. The error went away when I copied archive-forum.php from the bbpress folder into my theme folder, hopefully that helps
Figured it out just after posting this, I had to remove
'edit_post' => 'edit_custom_post_type', 'delete_post' => 'delete_custom_post_type', 'read_post' => 'read_custom_post_type',
from my capabilities array.