levihe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Author Changes When EditingBump
Forum: Fixing WordPress
In reply to: Author Changes When EditingYep, Gutenberg for all of them.
Forum: Plugins
In reply to: [Image Source Control Lite – Show Image Credits and Captions] PHP errorAwesome sauce! I didn’t see your response before posting what I found lol. Thanks for the super quick response and patched version.
Forum: Plugins
In reply to: [Image Source Control Lite – Show Image Credits and Captions] PHP errorI’ve pinpointed a section of the code that might be contributing to the
PHP Fatal error
related toget_thumbnail_source_string()
. The issue seems to occur when trying to access$post->ID
immediately after callingget_post()
, without verifying whetherget_post()
successfully returned a WP_Post object.
Original code in public.php$post = get_post();
return str_replace(
'',
$this->get_thumbnail_source_string( $post->ID ) . '',
$block_content
);
Possible fix?$post = get_post();
if ( $post instanceof WP_Post ) {
return str_replace(
'',
$this->get_thumbnail_source_string( $post->ID ) . '',
$block_content
);
} else {
return $block_content; // Return the content unchanged if no valid post is found
}
I didn’t want to try it out on my live site, lol.Forum: Plugins
In reply to: [PublishPress Statuses - Custom Post Status and Workflow] Not HappyThanks for the feedback and for taking my initial frustration in stride. I don’t think I can edit it, but I change my initial title of not happy, to just inconvenienced at the time.
I appreciate the active assistance and the work put into this plugin, as well as having a very usable free version with good pro upgrades.Thanks again
Forum: Plugins
In reply to: [PublishPress Statuses - Custom Post Status and Workflow] Not HappyThanks,
It turned out the bugs were being brought on by the checklists plugin enabled with the statuses plugin.
I deactivated the checklists plugin and the issues stopped. I am continuing to use the statuses plugin with the checklists plugin disabled, as I need that functionality more.Forum: Plugins
In reply to: [PublishPress Statuses - Custom Post Status and Workflow] Not HappyGiven that you all are pretty much the most updated outfit in town in this regard. Are you already aware of the following bugs
– Clicking update saves the update but refreshing the page says changes may not be saved.
– choosing a schedule time does not bring up the schedule option unless the page is refreshed.
– Is it this plugin or checklists that’s randomly preventing the excerpt field from being edited?Forum: Plugins
In reply to: [PublishPress Statuses - Custom Post Status and Workflow] Not HappyAh, that makes sense. Can you shoot me a link to the most recent release of planner that has the old functionality? I know edit flow is not exactly a frequently managed plugin.
Would the pro version give me any leg up on fixes updates or functionality in this regard?Forum: Plugins
In reply to: [PublishPress Statuses - Custom Post Status and Workflow] Not HappyThanks for the quick reply @stevejburg. I like to keep the plugins updated. If I were to add custom statuses myself, is there a way for me to see those in the notifications part of the current planner plugin?
- This reply was modified 10 months, 1 week ago by levihe.
I installed it and am testing out. It appears ok so far I will see over the next day or so. Thanks for the quick reply. ??
The above patch apears to have fixed the issue for me. Not sure about OP.