BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24741

    I see the issue, you had copied the code from email you recieved from this forum. That code had entities encoded. You should never use code from any email by this forum. Instead, should copy from the posts here.

    I have updated the code

    Here is your link
    http://pastebin.com/YdV1hTEz

    I just removed the entities and It should work. Please give it a try.

  • Keymaster
    (BuddyDev Team)
    Posts: 24741

    Can you please post your functions.php on pastebin? I will update it.

    It is not the above code, It is the place where you are posting code is causing this and that is generating php syntax error.

  • Keymaster
    (BuddyDev Team)
    Posts: 24741

    Hi Johan,
    Please put this in your theme’s functions.php

    
    
    add_action( 'mpp_after_media_widget_item', 'mpp_custom_add_user_link' );
    function mpp_custom_add_user_link() {
    	//you may put some conditions here like
    
           //mpp_is_single_gallery();
            //mpp_is_single_media();
           //to avoid showing it on single gallery/media pages
    
    	$user_link = bp_core_get_userlink( mpp_get_media_creator_id() );
    	echo $user_link;
    }
    
    

    and check if ti works or not?

    to add support in shortcodes too, we can add one more line:-

    
    add_action( 'mpp_after_media_shortcode_item', 'mpp_custom_add_user_link' );
    
    

    That will make it work in both.

    Please check and let me know.

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Ajax Registration plugin #1110

    Just received a response from Hardeep, so I guess you won’t have to update manually. An update will be available from wp.org by tomorrow.

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Ajax Registration plugin #1109

    Hi John,
    Just a small update.
    That plugin was using Recaptcha old libray and I had to update it. It is working for now. I will need till tomorrow to finish the plugin( Needs some cleanup as I did a lot of breaking here & there ). Have notified the author on wp.org about it and if he provides a way, will send him the updated file too.

    Please bear with me till tomorrow.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741

    Hi Johan,
    I am sorry about that. I thought you were going into the MediaPress APi and tried to convey that.

    Can you please post me how will you make listing and put a screenshot showing where you want the username to be. I will post exact code.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Unable to post reply in this forum #1107

    Hi James,
    I am sorry for the trouble.

    Can you please tell me which browser you are using. It seems to be a caching issue. i have disabled caching for logged in users and not sure why it is not allowing you. Also, on your topic, Please try to press F5(refresh) and see if that works.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Localization of site wide activity plugin? #1103

    That’s good to know 🙂

    I will still update it to make sure it is completely translatable.

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: [Resolved] Language files not "taking" #1102

    Yes, you are right. If you have poedit, you can do it yourself by simply updating path in settings and updating the catalog.
    I am holding the update to provide fix for one more issue I have noticed.

  • Keymaster
    (BuddyDev Team)
    Posts: 24741
    Brajesh Singh on in reply to: Simple Front End Post plugin show "Add Media" button #1101

    Hi James,
    Welcome to BuddyDev forums.
    It is doable, the concern is media management. How do we allow users to manage their media after upload. I am not sure about the UI.

    Do you have suggestions about that?