Hey there,
Sadly there is no setting for that. You can only change that through code.
For group, you're only able to configure that by chancing the code on file:
Joomla\components\com_easysocial\includes\group\group.php
On line no.1708
[gist type="php"]
if ($user->isSiteAdmin() || $this->isAdmin() || $this->isMember()) {
[/gist]
Replace with
[gist type="php"]
if ($user->isSiteAdmin() || $this->isAdmin()) {
[/gist]
For page, you're only able to configure that by chancing the code on file:
Joomla\components\com_easysocial\includes\page\page.php
On line no.1542
[gist type="php"]
if ($user->isSiteAdmin() || $this->isAdmin() || $this->isMember()) {
[/gist]
Replace with
[gist type="php"]
if ($user->isSiteAdmin() || $this->isAdmin()) {
[/gist]