Patterns are not displaying in Custom Gutenberg editor component to render gutenberg everywhere
Patterns are not displaying in Custom Gutenberg editor component to render gutenberg everywhere
Patterns are not displaying in Custom Gutenberg editor component to render gutenberg everywhere
Using Glide.js in custom Gutenberg block
You could do something like the following, this should go in your Child Theme’s functions.php or if not using a Child Theme then add to a custom plugin: function hide_permalink_metabox( $is_post_edit_page ) { if ( !current_user_can(‘update_core’) ) { // allows Admins to edit the permalink echo ‘<style> div#edit-slug-box {display:none!important;} </style>’; } You may need to … Read more
Gutenberg editor styles not applied
WordPress Editor Missing Padding and Background Color?
Background color of edit post page
WordPress presents default category as a setting in Settings -> Writing (though this doesn’t seem to pre-check the checkbox): The new_to_auto-draft action will allow you to do things to a new post before the page loads, and does pre-check the checkbox (tested): add_action( ‘new_to_auto-draft’, static function ( $post ) { $default_category_id = 25; // The … Read more
import { store as editPostStore } from ‘@wordpress/edit-post’; Is not the same as const { editPostStore } = wp.editPost.store; In the first line store is editPostStore, but in your second line editPostStore is a property of store, but it doesn’t exist. The correct syntax is const editPostStore = wp.editPost.store; Or const { store: editPostStore } … Read more
There is no built-in way to directly edit the database data for a page or its revisions in WordPress. However, you can achieve this by using a plugin such as WP-DB Manager, which provides a user-friendly interface for managing and editing your WordPress database. This plugin allows you to directly edit the database data for … Read more
ok i found the issue at least for me, so maybe it will help others: on my templates , on the post-content comment i added: {“layout”:{“type”:”constrained”}} that fixed the align issues.