kraisor
Forum Replies Created
-
Having the same issue on our site as well. We also have Kadence installed and are unable to edit posts that have a synced reusable block/pattern.
Rolling back to WordPress 6.5.5 fixed the issue for us.
Forum: Installing WordPress
In reply to: WP 6.6 hangs on synced patternHaving the same issue on our site as well. We also have Kadence installed and are unable to edit posts that have a synced reusable block/pattern.
Edit: Rolling back to WordPress 6.5.5 fixed the issue for us.
- This reply was modified 6 months, 1 week ago by kraisor.
Forum: Fixing WordPress
In reply to: Synced patterns lock up editorHaving the same issue on our site as well. We also have Kadence installed and are unable to edit posts that have a synced reusable block.
Forum: Plugins
In reply to: [Delete Duplicate Posts] Issue after latest WP Update 6.5.5In delete-duplicate-posts.php find line number 729 and change (no promises, worked for us though)
count( $json_response['dupes'] )
to
count( !empty( $json_response['dupes'] ) ? $json_response['dupes'] : array() )
Forum: Plugins
In reply to: [Conditional Menus] Unable to select conditions for Post TypesTested disabling all plugins and the issue still persists, I will email with more information. I see a 500 error in the network tab when Post Types is selected.
Forum: Plugins
In reply to: [Dark Mode for WP Dashboard] Kadence Blocks Support@naiches that’s awesome, you’re a rockstar!
@ankitmaru Any updates on when this will be updated by chance? Thank you!
Can confirm, this is happening on one of my sites as well on mobile.
Forum: Fixing WordPress
In reply to: FireFox Add New User Password IssueSame issue here, it will work occasionally but works with zero issues in Chrome.
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Disable canonical on a single pageAwesome, thank you!
For anyone else later that might need this, here is the full code.
/** REMOVE CANONICAL FROM SPECIFIC POST IDS **/ function sp_titles_canonical($html) { if( is_page( array( 3861, 4006, 4027, 4010 ) ) ) { return false; } else { return $html; } } add_filter('seopress_titles_canonical','sp_titles_canonical');
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Disable canonical on a single pageThis is what I’m trying to use, but it’s removing the canonical from all pages still.
/** REMOVE CANONICAL FROM SPECIFIC POST IDS **/ function sp_titles_canonical($html) { if( is_page( array( 3861, 4006, 4027, 4010 ) ) ) { return false; } } add_filter('seopress_titles_canonical','sp_titles_canonical');
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Disable canonical on a single pageOkay great, thank you. Can you let me know how to add a conditional for multiple post ids please?
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Disable canonical on a single pageUpdate, actually don’t use the above code, it will remove ALL canonical tags…
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Disable canonical on a single page@rainbowgeek Awesome Thank you! Here’s the final code I used for anyone that needs it.
By chance can you tell me how to modify this so I could use it for more than one page?/** Remove Canonical **/ function sp_titles_canonical($html) { $html = '<link rel="canonical" href="'.htmlspecialchars(urldecode('/url/path')).'" />'; return false; } add_filter('seopress_titles_canonical','sp_titles_canonical');
Forum: Plugins
In reply to: [SEOPress - On-site SEO] Disable canonical on a single page@rainbowgeek Unless I’m misunderstanding that doesn’t disable it, that just allows me to set a different canonical link?