You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When utilizing segmentation, a widget will display all of the posts that meet the segmentation criteria PLUS any posts that have no segmentation set at all but may meet other criteria.
Desired behavior - I would like for this widget to show ONLY posts that are both Label = "A" and segmented for "segmentName" = "C".
Right now, this widget would display both Posts 1 and 3, but not 2. And I would like the widget to show only Post 3.
It seems like a boolean prop at the top level, or segment prop, to toggle inclusive versus exclusive post query would be sufficient.
Something like data={{ segmentName: {require = true, value = 'C'} }} or just a boolean for the widget itself that is something like limitBySegmentationData that would produce an error if data is not provided/valid.
Maybe I'm missing a way to do this? If I segment by "widget", the same behavior described at the beginning is true. It includes all UNSEGMENTED posts as well as the posts with segmentation assigned to that widget.
The text was updated successfully, but these errors were encountered:
When utilizing segmentation, a widget will display all of the posts that meet the segmentation criteria PLUS any posts that have no segmentation set at all but may meet other criteria.
Example:
Widget Code:
<AnnounceKit embedWidget labels={['A']} widget="..." data={{ segmentName: 'C' }} />
Desired behavior - I would like for this widget to show ONLY posts that are both Label = "A" and segmented for "segmentName" = "C".
Right now, this widget would display both Posts 1 and 3, but not 2. And I would like the widget to show only Post 3.
It seems like a boolean prop at the top level, or segment prop, to toggle inclusive versus exclusive post query would be sufficient.
Something like
data={{ segmentName: {require = true, value = 'C'} }}
or just a boolean for the widget itself that is something likelimitBySegmentationData
that would produce an error ifdata
is not provided/valid.Maybe I'm missing a way to do this? If I segment by "widget", the same behavior described at the beginning is true. It includes all UNSEGMENTED posts as well as the posts with segmentation assigned to that widget.
The text was updated successfully, but these errors were encountered: