At the moment, there’s not an easy way to do this. (I have some filters in place, but they’re not working as smoothly as I’d like.) I’ve created an issue ticket to try to make this feature in the future: https://github.com/boonebgorges/bp-group-reviews/issues/19
Hi,
I second the nomination, I’d like the review setting to be set by default.
I’ve just installed this and I already have several groups which I wanted to set the review to on without having to edit 30+ groups manually. Just in case this helps others avoid having to search through the tables…..
I ran this…
insert into wp_bp_groups_groupmeta (group_id, meta_key, meta_value)
SELECT DISTINCT id, ‘bpgr_is_reviewable’, ‘yes’
FROM wp_bp_groups
where wp_bp_groups.id not in
( SELECT group_id FROM wp_bp_groups_groupmeta where wp_bp_groups_groupmeta.meta_key = ‘bpgr_is_reviewable’ )
note the wp_ may change depdending on your installation
*** always backup your database before running customer sql
*** always run sql at your own peril
*** no responsibility taken
*** run at your own risk!
Cheers,
Jimmy.