BuddyDev

Search

Replies

  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Plugin Request #5342

    @sbrajesh its okay 🙂 I hope you will work on it when you get time and by the way can you please share the friends activity notifier plugin ?

  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Plugin Request #5329

    @sbrajesh I hope the plugin is ready, can you please share it ?

  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Plugin Request #5311
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Plugin Request #5307

    Thanks Brajesh, eagerly waiting for the share plugin 🙂

  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Plugin Request #5299

    Hi Brajesh,

    Is the plugin coming out soon ? I’m waiting for this ! 🙂

  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Buddypress activity comment feature request #5298

    Thanks Brajesh but i dont see a delete button inside the entry.php , the only thing i ca see is this
    <?php if ( bp_activity_user_can_delete() ) bp_activity_delete_link(); ?>

    and the edit button comes from a different plugin so that is also not visible in entry.php

    I will find another solution 🙂 but i need your help

    I want to create buttons like messages , notification , profile and when user clicks on message or notification button it redirects them to their corresponding pages. Like if the user click message button it takes him to his message page .

  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Buddypress activity comment feature request #5284
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Buddypress activity comment feature request #5282

    If you remember my previous post of how to tweak activity meta , can you please share that code so that i can put all the secondary buttons inside a drop down box ?

  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: Buddypress activity comment feature request #5281

    Thank you so much Brajesh! 🙂

    And i am sharing a code for hiding and showing comments which i found in the buddypress support page:
    so that after viewing the 100’s of comments you can hide it! 🙂

    add_action( ‘wp_footer’, ‘add_comment_hide_show’ );
    function add_comment_hide_show() {
    ?>
    <style>
    .single-group .activity-comments ul{display: none;}
    </style>
    <script type=”text/javascript”>
    jQuery(function($) {
    setInterval(function() {
    $(‘.activity-meta’).each(function() {
    if( !$(this).find(‘.show-comments’).length ){
    var html = ‘Show/Hide Comments‘;
    $(this).find(‘.button.acomment-reply’).after(html);
    }
    });

    }, 500);

    $(‘body’).on(‘click’, ‘.show-comments’, function(e) {
    e.preventDefault();
    var obj = $(this).closest(‘.activity-content’).next(‘.activity-comments’).find(‘ul’);
    obj.slideToggle();
    return false;
    });

    });
    </script>
    <?php
    }

  • Participant
    Level: Enlightened
    Posts: 39
    Aravind Nambiar on in reply to: [Resolved] Mediapress audio upload error #5261

    Thanks brajesh it worked!