BuddyDev

Search

Replies

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Change Text for activity post #20382

    Hi Brajesh,

    That’s a very cool feature. But when I tried it out and uploaded a pic on activity, then I could not comment the pic, and when I pasted a link into the link field, it said I cannot paste the link.

    I think the user would need to be able to comment as well on his pic when he uploads, right? But I couldn’t find the feature inside MPP Upload widget for activity upload.

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Change Text for activity post #20356

    Hi Brajesh,

    The Theme uses BuddyKit as default for uploading media in activity stream and I might should use that one in order to make running the webpage smoothly.

    The only thing what could be cool with MediaPress Activity uploads would be that when the user uploads media on activity, that the media will be automatically saved to his Gallery.

    I was able to deactivate MPP upload icons for activity as per your instructions in order to use only BuddyKit for activity uploads for the moment.

    Thank you.

    Regards,
    Daniel

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Change Text for activity post #20346

    Hi Brajesh,

    Thanks for your input. I will try to translate the text.

    for 2. You mean to untick the uploads in MediaPress Settings? When I untick Photo Audio Video, then the user cannot anymore upload media in Galleries as well. That’s why I need to hide the icons with CSS in Activity field.

    Thanks & Regards,
    Daniel

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Change Text for activity post #20337

    Hi

    Also when pasting a link into the link field when clicking on one of the icons and then clicking +add, then it says “sorry I am unable to post the link”.

    Is it possible to hide this field?

    Thank you.

    Regads
    Daniel

    • This reply was modified 5 years, 10 months ago by Daniel.
  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Change Text for activity post #20336

    Hi again,

    I also would like to change the size and the color of the 3 big grey media press upload buttons which appear under the activity post form field.

    I have tried with these codes but it is not working 🙁

    .mpp-upload-buttons {
       max-width: 20px;
       color: blue;
    }
    
    /*or*/
    
    #mpp-activity-upload-buttons a img {
      max-widht: 20px
      color: blue;
    }

    Thanks for your help.

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Implementing Instagram Photos into MediaPress ? #20168

    Hi Brajesh,

    I was just stumbling upon this plugin which looks promising and it might could help to implement Instagram Photos of the User into Media Press:

    https://wordpress.org/plugins/instashow-lite/

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497

    Hi Brajesh,

    Yeah, it was the Lazy Load images Plugin causing this. Wow you’ve made my day!!!

    These things only Masters can know.

    Thank you so much I feel really relieved now!!!

    That’s so good the feature works again and I’m very happy 🙂 !!!

    Thank you again!!!

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497
    This reply has been marked as private.
  • Participant
    Level: Master
    Posts: 497

    Hi Brajesh,

    1. I have already enabled Featured Image in BuddyBlog Settings but the function is hidden in frontend when the user is trying to EDIT his post.

    In the older Buddyblog Version the user was able to change the Featured Image when Editing Post, but since the new update the function is hidden even when enabled in backend.

    Also, Ravi had send me the code below to hide “New Post” Tab because I am using another plugin to create New Post.
    Since the new update, the “New Post” tab is visible again. Would it be possible to change the code Ravi provided in order that the user gets redirected to https://mypage.com/create-new-blog/ when clicking on “New Post” tab instead of hiding the tab? If that will not be possible could you please change the code in order that the tab is invisible?

    function buddydev_remove_new_post_tab() {
    	if( ! buddyblog_is_edit_post() ) {
    		bp_core_remove_subnav_item( buddypress()->buddyblog->slug, 'edit' );
    	}
    }
    add_action( 'bp_buddyblog_setup_nav', 'buddydev_remove_new_post_tab' );
    
    function buddydev_remove_admin_new_post_tab( $wp_admin_nav_items ) {
    
        if ( ! buddyblog_is_edit_post() ) {
    	    $new_admin_items = array();
    
    	    foreach ( $wp_admin_nav_items as $wp_admin_nav_item ) {
    
    		    if ( $wp_admin_nav_item['id'] == 'my-account-' . buddypress()->buddyblog->id . '-new-post' ) {
    			    continue;
    		    }
    
    		    $new_admin_items[] = $wp_admin_nav_item;
    	    }
    
    	    return $new_admin_items;
        }
    
        return $wp_admin_nav_items;
    }
    
    add_filter( 'bp_buddyblog_admin_nav', 'buddydev_remove_admin_new_post_tab' );

    Thank you very much for your assistance.

    Regards
    Daniel

  • Participant
    Level: Master
    Posts: 497
    Daniel on in reply to: Bug in some plugin #20130

    Hi Brajesh,

    Cool, I thought so too it is the Live Notification.

    Yes, I have re-activated the Moderation Tool and all works well.

    Does this mean I cannot use Live Notification Plugin with my Theme ?

    Thanks & Regards
    Daniel