By alex goldberg on Friday, 01 May 2015
Posted in Technical Issues
Replies 1
Likes 0
Views 474
Votes 0
I disabled the Friends application and it has removed most of the references to Add Friends, but not in this place. Can you please let me know which file I should edit to do this. Please see the screenshot attached.
Hi alex goldberg,
Go to: JoomlaFolder\components\com_easysocial\themes\wireframe\profile\popbox.php
Remove:
	
<?php if ($user->getFriend($this->my->id)->state == SOCIAL_FRIENDS_STATE_FRIENDS) { ?>
<div class="btn-group btn-group-friends">
<?php echo $this->loadTemplate( 'site/profile/popbox.button.friends' , array( 'user' => $user ) ); ?>
</div>
<?php } else { ?>
<?php if( $user->getFriend( $this->my->id )->state == SOCIAL_FRIENDS_STATE_PENDING ){ ?>
<div class="btn-group btn-group-pending">
<?php if( $user->getFriend( $this->my->id )->actor_id == $this->my->id ){ ?>
<?php echo $this->loadTemplate( 'site/profile/popbox.button.requested' , array( 'user' => $user ) ); ?>
<?php } else { ?>
<?php echo $this->loadTemplate( 'site/profile/popbox.button.respond' , array( 'user' => $user ) ); ?>
<?php } ?>
</div>
<?php } else { ?>
<div class="btn-group btn-group-pending">
<?php echo $this->loadTemplate( 'site/profile/popbox.button.add' , array( 'user' => $user ) ); ?>
</div>
<?php } ?>
<?php } ?>
At Line 85-103
Let us know if this guide help you out on your needs?
·
Saturday, 02 May 2015 02:14
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post