custom content in right side bar
I see in this community that on the feed page there is a hosted on xcloud image. How do I add custom content to the right side bar? Can I add something that would be on all spaces including feed? sorry if this is explained in the documentation, but I can't find it mentioned. Regarding positioning, I would like to add content to the top of the right side bar.
+1
I agree with you because strangely the right side bar is often almost empty in all the FC sites. I hope you will get some answers.... :)
It's not a core option - you can add basic widgets using my plugin (better version coming soon but this works for now).
https://fluentcommunityaddons.com/download/1760/?tmstv=1763320538
Ross FCAΒ Hi, I download the widget im trying to embed my spotify player on my community. ut i see the html code ont he community, I'm not even sure if i put the embed code at the rigth place. Can you help me with this one please ?
This plugin is free and works great. https://fluentcommunityaddons.com/product/widgets/
It'll add a widget you create on the top of the sidebar like this one.
Was provided the hook for the feed, dug deeper and found how to do it site wide also. Here's both
https://damp-pond-172025.1wp.site/community/
add_filter('fluent_community/activity/after_contents', function ($content, $spaceId) {
return '<div style="text-align: center;"><p style="display: flex; gap: 6px; margin-top: 0; justify-content: center;">Hosted with <a target="_blank" rel="noreferrer noopener" style="display: block;" href="https://xcloud.host?fpr=wpmn_email"><img style="width: 60px;" src="https://d2caaow1b6whjp.cloudfront.net/b654bbe2-4d89-481f-a4e4-f1a070e71795/img/x-cloud_blue.svg" /></a></p></div>';
}, 10, 2);
$fc_hosted_hooks = [
'fluent_community/activity/after_contents', // main feed
'fluent_community/activity/after_contents_space', // every space
];
foreach ($fc_hosted_hooks as $hook_name) {
add_filter($hook_name, function ($content) {
return '
<div style="text-align: center;">
<p style="display: flex; gap: 6px; margin-top: 0; justify-content: center;">
Hosted with
<a target="_blank" rel="noreferrer noopener" style="display: block;" href="https://xcloud.host?fpr=refpub">
<img style="max-width: 3.75rem; width: 100%; height: auto;"
src="https://d2caaow1b6whjp.cloudfront.net/b654bbe2-4d89-481f-a4e4-f1a070e71795/img/x-cloud_blue.svg" />
</a>
</p>
</div>';
}, 10, 1);
}
