BuddyDev

Search

Replies

  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: [Resolved] Buddypresss Activity Plus? #26807

    HELLO! 😊

    Thank you! That’s awesome – VERY COOL OF YOU – I just did a lot of testing with WP Debug, php logs, etc. NO ERRORS 😊 And I have over 40 plugins on my dev server Ahaha (page load under 600ms 😉

    I did find ONLY 1 thing and it has to do with this BP Activity Plus and your plugin MediaPress:

    You have a plugin called, BuddyPress Rate Limit User Activity and it works – BUT with MediaPress (upload through Activity form) and BP Activity Plus, the user can by pass the Buddpress Rate Limit User Activity settings (not getting the “You are going to fast” notice, and the post updates).

    Hope that makes sense.

    Thanks for taking on BP Activity Plus! THAT’S AWESOME (of course, I’ll be buying the MediaPress Moderation tools in the nearer future, when I get to that section, before launching website).

    PS I did get these errors on the admin page only:

    ( ! ) Notice: screen_icon is deprecated since version 3.8.0 with no alternative available. in C:\wamp64\www\web\wp-includes\functions.php on line 4443

    ( ! ) Notice: get_screen_icon is deprecated since version 3.8.0 with no alternative available. in C:\wamp64\www\web\wp-includes\functions.php on line 4443

    So I commented out a piece of code:

    In class_bpfb_admin_pages.php
    Line 87 commented out screen_icon(‘buddypress’);

    I don’t see that being a problem… .

  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: Add Link ? #26795

    Hello, again. There is no video icon. I have settings for Oembed Support = Yes, I have Enable Adding Media Through Link = Yes, I have Enable Adding Direct Link To Files From Other Sites = Yes, and Download The File To Your Server = Yes.

    I see the Upload Photo button and Activities Submit Button.

    When I click on Upload Photo the MPP Upload Dropzone Acivity shows, and underneath it, the MPP Feedback Remote Media Upload Feedback field shows (“Enter a link”) with the +Add button.

    I don’t see a Video Icon for YouTube videos.

    I can place the YouTube video in the Activity TextBox and it gets transformed into a YouTube video when update is submitted.

    Any suggestions?

    Thank you!

  • Participant
    Level: Master
    Posts: 171

    Yes, it works great! Thanks for the code!

  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: Pre Purchase Question Mediapress… #26675
    This reply has been marked as private.
  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: Pre Purchase Question Mediapress… #26674
    This reply has been marked as private.
  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: Pre Purchase Question Mediapress… #26673
    This reply has been marked as private.
  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: Pre Purchase Question Mediapress… #26672

    PS will this plugin work for the current MediaPress?

    https://github.com/mediapress/mpp-gallery-categories/blob/master/mpp-gallery-categories.php

    Thank you.

  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: [Resolved] Confused on finding settings… #26570

    Okay, sounds great! Thanks.

  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: [Resolved] Confused on finding settings… #26568

    Okay, I found the error! Damn, I missed it too! Ahahahah this is the code I had in functions.php file:

    // was added
    if( !function_exists('redirect_404_to_homepage') ){
    
        add_action( 'template_redirect', 'redirect_404_to_homepage' );
    
        function redirect_404_to_homepage(){
           if(is_404()):
                wp_safe_redirect( home_url('/') );
                exit;
            endif;
        }
    }
    // end was added

    As soon as I deleted it, your plugin worked properly – but now I have to figure a code that would work (i.e. code that would re-direct to homepage instead of 404 page).

    Thank you for your patience and help.

    I can’t believe I missed that little snippet! Ahahahaha

    Okay, only 3 days lost on creating this website, not bad, not good – just the way the cookie crumbles Ahahahah

    Again, thanks!

  • Participant
    Level: Master
    Posts: 171
    JohnnyNW on in reply to: [Resolved] Confused on finding settings… #26566
    This reply has been marked as private.