You are not allowed to edit posts in this post type ERROR WorkAround
-
WR ContactForm 1.1.11
Found workaround for error “You are not allowed to edit posts in this post type.Edit: wr-contactform/helpers/action-hook.php
Find line 535: public static function register_post_type() {
Go to line 574:
‘slug’ => ‘wr_cfsb_post_type’,Under line 575: ‘options’ => array(
Go to line 582:
‘supports’ => array( ‘title’ ),
‘public’ => false,
‘has_archive’ => false,
),
Change and Add two new lines in options array:
‘supports’ => array( ‘title’ ),
‘public’ => false,
‘has_archive’ => false,
‘show_ui’ => true,
‘show_in_menu’ => false,
),The Submissions should now function and show in admin page.
The email notification’s are still not working.
If someone could help with that it would be great!
- The topic ‘You are not allowed to edit posts in this post type ERROR WorkAround’ is closed to new replies.