Group Mods

  • Profile picture of @mercime
  • Profile picture of r-a-y
  • Profile picture of Hugo

Disable the ’REPLY’ function to already existing post reply (7 posts)

Started 1 year, 2 months ago by: marffinn

  • Profile picture of marffinn marffinn said 1 year, 2 months ago:

    Hi,
    I have a very strange problem. When on my site I post comment, then somebody wants to reply to it…it’s ok. But is it there any possibility of removing reply function to that reply. ?

  • Profile picture of Virtuali Virtuali said 1 year, 2 months ago:

    Any Reason you don’t want subsequent replies? If you don’t want the nesting, it’s a simple CSS solution you can change:

    div.activity-comments ul li
     margin-left: 0px;

    Is that what you mean?

  • Profile picture of marffinn marffinn said 1 year, 2 months ago:

    No, what I want is this :

    http://img822.imageshack.us/img822/7476/replyg.jpg

    And answering Your question: “Any Reason you don’t want subsequent replies?”
    It get pretty messy when there is a post, and a reply to it, and then another one to that reply , and then reply to reply to reply of comment….You know where I’m heading to…. I want to keep it simple as for example facebook does.

  • Profile picture of Chouf1 Chouf1 said 1 year, 2 months ago:

    If you use BP 1.2.8, go to bp-activity/bp-activity-templatetags.php
    at line 647 is function bp_activity_recurse_comments
    with a if statement if ( is_user_logged_in() )
    in which is the word “reply”

    rewrite this function to retrieve the word and put it in the functions.php file of your theme

    This is a solution, but probably they are others ;-)

  • Profile picture of Fanoop Fanoop said 1 year ago:

    I was able to remove the “reply to reply” link with some CSS.

    #buddypress-page .acomment-replylink {
    display: none;
    }

    This seems to work perfectly for me.

  • Profile picture of justbishop justbishop said 6 months, 3 weeks ago:

    Any other CSS tricks to get rid of the “reply” link on activity replies? I tried the above, as well as the following, and the little bugger just won’t go away!

    .acomment-reply .bp-primary-action {
    		display:none; !important
    	}
  • Profile picture of candy2012 candy2012 said 5 months, 3 weeks ago:

    .acomment-meta a.acomment-reply {display:none;}

    this would hide “reply” to “reply” link …