Hi @etay86
you need to change this file:
templates/profile/profile.php
around line 30 there’s a line that says
<?php peepso('load-template', 'general/postbox'); ?>
you need to wrap it in a conditional statement like below to make sure the postbox only appears to the owner of the profile and nobody else
<?php
if (peepso('profile', 'is-current-user')) {
peepso('load-template', 'general/postbox');
}
?>
Hope this helps ??
Best,
Matt