How i can customize WordPress front page in WP dashboard editor?

You can use Elementor plugin. Elementor is quickly growing in popularity and is another impressive freemium page builder plugin for WordPress. With a good selection of widgets and page templates in the free version, Elementor is certainly competitive. So let’s find out if it should be your page builder plugin of choice.

Forbidden when I’m trying to edit one page

Found the problem, it was caused by ModSecurity module in CPanel. For unknown reasons, it blocks the edit of that WordPress page (only that page). I disabled ModSecurity and works now. I’ll contact my hosting company to see what’s wrong (I cannot make any configuration in my Cpanel for ModSecurity)

Tool bar in editor missing in WP

I’m guessing you mean the WordPress Admin bar which shows in the header of the logged in user page? Can you get the user to login and check that they haven’t disabled this under the User > My Profile menu option Also you might like to check out this plugin which allows you to switch … Read more

Limit post view and management to custom user meta information

You have to filter user_has_cap and compare the user meta fields. The following code is based on this answer and not tested. add_filter( ‘user_has_cap’, ‘wpse_99393_filter_cap’, 10, 3 ); /** * Allow editing others posts only for editors from the same school. * Administrators can still edit those posts. * * @wp-hook user_has_cap * @param array … Read more

Contributor post to be reviewed and published by only one editor

You don’t say how you save the editor -> contributor associations, I assume you store it in a user meta field with key ‘assigned_contrib’ where you save an array of contributors user id. First off all, hide posts to other editors using pre_get_posts hook: add_action(‘pre_get_posts’, ‘hide_posts_to_editors’); function hide_posts_to_editors( $query ) { if ( is_admin() && … Read more

WordPress page editor for clients, opinions needed

It is the theme author’s responsibility to give an admin interface that will allow the client to create the content in the form he wants. Layout related options and shortcodes are just a way for the author to justify doing a poor job in understanding the client’s needs and helping the client to easily manage … Read more