Rating: 5 stars
This is simple and good ??
]]>Rating: 5 stars
Really a great plugin and great support for the plugin ! Thank you
]]>Rating: 1 star
BP Group members, unless being super admins, cannot post comments on Ideas of which they are not authors. They can only successfully post comments on their own Ideas.
After 3 months since I and even at least 2 other users reported this issue – no answer from the developers. The plugin might be great otherwise, but currently it is useless with this bug.
Rating: 5 stars
great plugin. works well
]]>Rating: 5 stars
i like this plugin because it is an idea itself,thank you.
]]>Rating: 5 stars
Easy install and use, perfect!
]]>Rating: 4 stars
Hi,
tested your plugin with WP/BP newest versions.
Found out the following:
1. If a user has no author rights, he can only publish an idea in groups. Once published, he can edit his idea only once or for a short time (some minutes).
2. As an admin I can publish ideas in backend but in frontend in groups only too.
3. The admin can unlink an idea from group in frontend and only then an idea is assigned to the user in frontend. But the user cannot edit his idea anymore.
I found it a bit troublesome that your great plugin has a lot of restrictions. A user could improve his idea after he got some comments and the users could give later a better rating. Some for WordPress comments here.
]]>Rating: 5 stars
app
]]>Rating: 5 stars
With keen insight into what complements WP the author has created a plugin to fill the much needed gap. Although the UI can be somewhat improved the core functionality is solid and the code is superbly written by an expert.
]]>Rating: 5 stars
Very useful plugin and easy to install and setup. Thank You.
]]>Rating: 5 stars
I will for sure do some little design changes at plugin and use it.
Thank you.
Rating: 5 stars
Lovely plugin that is well coded and easy to use!
]]>Rating: 5 stars
Excellent! Work perfect!
Thanks for your help.
This plugin is really special and very good implemented, congratulations!
Rating: 5 stars
For me, this plugin is an laboratory ??
]]>Rating: 1 star
Plugin doesn’t work as intended. Too bad too, it had a lot of potential. Thanks for the effort.
]]>Rating: 5 stars
A lot of hooks.
Works with normal WP install and BuddyPress one.
Rating: 5 stars
I really enjoy the plugin functionality and its integration with BuddyPress. Great work, Mathieu!
]]>Rating: 5 stars
Very cool! And thank you for your commitment to the BuddyPress community!
]]>Rating: 1 star
Interface pas belle, pas ergonomique.
Plugin ne fonctionne qu’avec un seul thème.
Aucune utilité de ce plugin
Rating: 4 stars
i just modified some code for my need :
Added a special profile :
add_role( 'idea_submitter', 'Idea submitter', array( 'edit_idea','read_idea','publish_ideas' ) );
function add_ideas_caps() {
// gets the author administrator
$role = get_role( 'administrator' );
// This only works, because it accesses the class instance.
// would allow the administrator to edit others' ideas
$role->add_cap('publish_ideas');
$role->add_cap('edit_ideas');
$role->add_cap('edit_others_ideas');
$role->add_cap('delete_ideas');
$role->add_cap('delete_others_ideas');
$role->add_cap('read_private_ideas');
$role->add_cap('edit_idea');
$role->add_cap('delete_idea');
$role->add_cap('read_idea' );
$role->add_cap('see_idea_author' );
$role->add_cap('see_idea_excerpt');
$role->add_cap('see_adminbar');
$role2 = get_role('idea_submitter');
$role2->add_cap('publish_ideas');
$role2->add_cap('edit_idea');
}
add_action( 'admin_init', 'add_ideas_caps');
and in the register post type :
'capability_type' => 'idea',
I also modified some views because i wanted an anonymous view of ideas for example.
I Added a code for counting votes (see on http:/imathi.eu)