Hi Onwuka Chinedu,
Hello, posted recently to figure out how to remove bookmarks from the home page of my site. For clarity, what I mean is unregistered users can see these information and I want it to be accessible to only registered users. How do I get this done?
Look like this is an issue with EasySocial. The social bookmark should be visible to logged in user only. Anyway, I've fixed this issue internally. For the quick fix, open the file 'JOOMLA/components/com_easysocial/themes/wireframe/stream/actions.php' and look for below code at line 58:
<?php if (isset($sharing) && $sharing && $this->config->get('stream.sharing.enabled')) { ?>
and replace the above with the following:
<?php if (!$isGuest && isset($sharing) && $sharing && $this->config->get('stream.sharing.enabled')) { ?>
Hope this help and have a nice day!