onGroupCoverChanged( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when a group's logo is changed.

Method Declaration
Copy
Method Parameters
eventGroupCoverChangedEvent

Group cover data.

onGroupCoverChanged example
JavaScript
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

onGroupDescriptionChanged( )


Developer Preview

This API is subject to change. Bug fixes and new features will be released based on developer feedback throughout the preview period.

Triggered when a group's description is changed.

Method Declaration
Copy
function wixSocialGroups_onGroupDescriptionChanged(
  event: GroupDescriptionChangedEvent,
): void;
Method Parameters
eventGroupDescriptionChangedEvent

Group description data.

onGroupDescriptionChanged example
JavaScript
export function wixSocialGroups_onGroupDescriptionChanged(event) { const eventId = event.metadata.id; const entityId = event.data.group._id; }
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?