Hi !
just add the needed capabilities to your user role. For example, in the function.php file inside your theme’s directory :
$editor_role->add_cap('wpProQuiz_change_settings');
$editor_role->add_cap('wpProQuiz_toplist_edit');
$editor_role->add_cap('wpProQuiz_edit_quiz');
$editor_role->add_cap('wpProQuiz_delete_quiz');
$editor_role->add_cap('wpProQuiz_add_quiz');
$editor_role->add_cap('wpProQuiz_show');
$editor_role->add_cap('wpProQuiz_show_statistics');
$editor_role->add_cap('wpProQuiz_export');
$editor_role->add_cap('wpProQuiz_import');
Hi Benny,
I had the same problem because of special characters (I’m french). In the “faster-image-insert.php” file replace all “_e” function with the “esc_attr_e”.
Hope it’ll helpful