By Norske on Tuesday, 11 November 2014
Posted in Groups
Replies 1
Likes 0
Views 1K
Votes 0
I have users who create a normal Event, but meant to create a Group Event. Is there a way for me, the Admin to move that Event? Or must I completely delete it and recreate it?
Hi,

Currently we don't have an interface to do this but technically you can do it through database.

If you are comfortable with doing it through database, then I can guide you through on the steps to achieve this.

1. Go to backend -> Events
2. Retrieve the ID of the event that you like to change. Screenshot: http://screen.stackideas.com/2014-11-11_1753.png
3. Retrieve the ID of the group that you like to change in the similar fashion at backend -> Groups
4. Execute the SQL:

UPDATE `prefix_social_events_meta` SET `group_id` = '$groupid' WHERE `cluster_id` = '$eventid'


* replace prefix with your table prefix
* replace $groupid with the group id retrieved in #3
* replace $eventid with the event id retrieved in #2.
·
Tuesday, 11 November 2014 18:00
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post