Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Social sharing buttons on image view #5613

    Hi Simon,
    Please use mpp-social-share plugin based on the Simple social plugin

    https://github.com/mediapress/mpp-social-share

    We haven’t released it officially yet, so if you find any issue, Please do let us know.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370

    Thank you. Just checked and I see the problem. Instead of returning the data as string the shortcode is echoing that. A fix is coming very soon today.

  • Keymaster
    (BuddyDev Team)
    Posts: 25370

    Hi George,
    Can you please move the shortcode at the bottom of the content and see what happens?

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Buddypress Ajax Registration -> Popup on pageload #5601

    Thank you. I am glad I was able to help.

    We have plans to impart some functionalities in future in the plugin itself.

    Marking it as resolved now.

    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Featured Image not saving #5600

    Thank you Lana,
    I am looking at it again and will report back.

  • Keymaster
    (BuddyDev Team)
    Posts: 25370

    Hi Jaume,
    Are you using any group specific plugin? There is nothing wrong on the front end using a different URL, that allows to write some message/intro for the user.

    Have you tried by disabling all pluging and keeping BuddyPress active only?

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Setting Issue or Bug? Can't Delete Media in MediaPress #5592

    Hi Rick,
    I am sorry for the inconvenience.

    Can you please tell me if it is happening with user gallery upload or sitewide gallery uploads?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Buddypress Ajax Registration -> Popup on pageload #5591

    Hi,
    Please make sure you have completed the change in the above step.

    We may use this code to temporarily disable it on other pages

    
    function bpajaxr_only_load_on_signup() {
    	if ( ! is_user_logged_in()  && is_page( 'sign-up' ) ) {
    		return true;
    	}
    
    	return false;
    }
    add_filter( 'bp_ajaxr_load_js', 'bpajaxr_only_load_on_signup' );
    
    

    It should go in your bp-custom.php
    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Buddypress Ajax Registration -> Popup on pageload #5588

    Here is a solution. Not the best one though.

    1. Please Visit Dashboard->settings->BuddyPress->Options
    and un check the box that says

    
     Enable Ajax Loading of Form 
    

    under the BuddyPress Ajax registration setting

    Once you are done with that, you can put the following code

    
        setTimeout( function () {
            show_reg_form();
        }, 1000 );
    

    In the file wp-content/plugins/bp-ajax-registration/_inc/bp-ajax-register.js
    Just after the line

    
       var magnificPopup = jQuery.magnificPopup.instance;
    

    That will show the popup after 1 second on all pages. I will add a more proper APi in future.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25370
    Brajesh Singh on in reply to: Buddypress Ajax Registration -> Popup on pageload #5586

    Hi Archaic,
    Thank you.
    Yes, I had provided similar code for one of our members. I am looking at it and will post back.