Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor EricTracz

    (@erictracz)

    Hi,

    Sorry but there aren’t such restrictions built into PeepSo. You’d have to have customize PeepSo code to achieve that. Simplest would be to remove the postbox from profile view.

    Kindest regards.

    Thread Starter etay86

    (@etay86)

    can you please tell me how i do it?
    peepso editor–>postbox.php–> ??
    tnx

    Plugin Contributor Matt Jaworski

    (@jaworskimatt)

    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

    Plugin Author PeepSo, Inc.

    (@peepso)

    Hi,

    We will also try to add this as a setting in 1.5.1 version.

    Kindest regards.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘write on the wall of another user’ is closed to new replies.