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: 25297
    Brajesh Singh on in reply to: [Resolved] MediaPress Default Resolution #14718

    Hi Sujee,
    Thank you.

    1. MediaPress stores the original image. So it is available but not shown in the lightbox. There was a bug in 1.3.5 which showed the larger image on the single but not the original. It is fixed but I haven’t released an update. I will bundle an update today.

    2. We also have a donwloadable media addon that you can use to show a download link for each of the media

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25297
    Brajesh Singh on in reply to: Error warning. Message + Profile Privacy plugin #14717

    I will check today and get back to you.

    Thank you.

  • Keymaster
    (BuddyDev Team)
    Posts: 25297
    Brajesh Singh on in reply to: domain.com/wp-login.php is blank #14716

    Hi Julia,
    Please login to Dashboard and activate the plugin.
    Once that is done, Please visit Dashboard->Settings->BuddyPress->Pages and assign pages for Login, Forget password, Logout etc.

    After that it will work as expected.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25297
    Brajesh Singh on in reply to: Custom background #14715

    Hi Jill,
    Sure.

    changing this

    
    if ( ! function_exists( 'bppg_get_image' ) ) {
    		return ;// no trouble when the plugin is disabled
    }
    
    

    to this

    
        if ( ! bp_is_user_activity() || ! function_exists( 'bppg_get_image' ) ) {
    	    return ;// don't do anything on non activity page.
        }
    
    

    Will do it.

    Best regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25297

    Hi Sujee,
    Thank you.

    I am using the following code to register a post type

    
    /**
     * Register post type for User Content.
     */
    function buddydev_register_post_type() {
    	register_post_type( 'bp_user_content', array(
    		'label'    => 'User Content',
    		'labels'   => array( 'name' => 'User Contents' ),
    		'public'   => false,
    		'show_ui'  => true,
    		'supports' => array( 'title', 'editor', 'author', 'custom-fields' )
    	) );
    }
    
    add_action( 'init', 'buddydev_register_post_type' );
    
    

    and the following shortcode

    
    [bp-user-last-post post_type='bp_user_content']
    

    And it is working.
    I am not sure of the issue but I am guessing your issue may have to do with the post type registration.

    Please give it a shot and let me know if this works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25297
    Brajesh Singh on in reply to: Dropdown menu #14707

    You will need someone to do the css for you. I am sorry but our support is limited. You will need to hire someone from upwork or codeable to do it for you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25297
    Brajesh Singh on in reply to: Simple update "profile privacy plugin" #14706

    Sorry, The plugin is hardcoded and It can not be modified. Sorry about this.

  • Keymaster
    (BuddyDev Team)
    Posts: 25297
    Brajesh Singh on in reply to: reorder sub nav activity and change text #14704

    For changing position, I will suggest using
    https://buddydev.com/plugins/buddypress-user-profile-tabs-creator-pro/

    Or look into the code. I will avoid spending time writing it.

    For others, Please use poedit to translate the strings.

  • Keymaster
    (BuddyDev Team)
    Posts: 25297
    Brajesh Singh on in reply to: Error warning. Message + Profile Privacy plugin #14703

    Is it the Profile Privacy and Private Message plugin?

  • Keymaster
    (BuddyDev Team)
    Posts: 25297

    Hi Sujee,
    What is the post type name?