BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Cannot update cover image #13402

    Hello NikB,

    Welcome to Buddydev. Please point me to your site with some demo account detail so that I can check

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Topy,

    I have updated the plugin. Please download the latest version plugin form the following url

    https://buddydev.com/plugins/bp-notify-post-author-blog-comment/

    and let me know if fix or still persists

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Setting up Member Types #13343

    Hello Neil,

    I have not checked it with Membership2. Let me check with this and will get back to you.

    Thank you
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Lightbox revisited #13143

    Hello Audiomonk,

    Good to know. Marking this topic as resolved.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Lightbox revisited #13138

    Hello AudioMonk,

    Thank you for the acknowledgement. You can achieve this by overloading the widget template with name ‘grid-photo.php’. Just follow the following steps.

    1. Copy Template ‘mediapress/templates/mediapress/default/widgets/grid-photo.php’.
    and paste it to active theme directory like ‘wp-content/themes/twentysixteen/mediapress/default/widgets/grid-photo.php’

    2. Replace the following content

    
    	<a href="<?php mpp_media_permalink(); ?>" <?php mpp_media_html_attributes( array(
    							'class'            => 'mpp-item-thumbnail mpp-media-thumbnail mpp-photo-thumbnail',
    							'data-mpp-context' => 'widget',
    						) ); ?>>
    							<img src="<?php mpp_media_src( 'thumbnail' ); ?>" alt="<?php echo esc_attr( mpp_get_media_title() ); ?> "/>
    						</a>
    

    with

    
    	<a href="<?php mpp_media_src(); ?>" <?php mpp_media_html_attributes( array(
    							'class'            => 'mpp-item-thumbnail mpp-media-thumbnail mpp-photo-thumbnail responsive_lightbox',
    							'data-mpp-context' => 'widget',
    						) ); ?>>
    							<img src="<?php mpp_media_src( 'thumbnail' ); ?>" alt="<?php echo esc_attr( mpp_get_media_title() ); ?> "/>
    						</a>
    
    

    Please let me know if it works or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyPress Branded Login – Reset code issue #13137

    Hello Julia,

    Thank you for posting. I have checked this on my local server and it is working fine. Can point me to the site with some demo details so that I can check. Also if possible provide me your BuddyPress settings page tab screenshot it will help me.

    Thank You
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Lightbox revisited #13130

    Hello Audiomonk,

    I am on it. please let me know are you using any WordPress plugin for custom lightbox Or you have some custom code for it.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] mpp-list-media status=friends returns everything #12993

    Hello Richard,

    Thank you for the acknowledgement. I am glad that I could help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] mpp-list-media status=friends returns everything #12990

    Hello Richard,

    Thank you for the acknowledgement. Please download the latest code of MediaPress from the following url

    https://github.com/buddydev/mediapress

    and use the following code if you want to list media of loggeded-in user friends

    
    function buddydev_list_friends_media( $args ) {
    
    	if ( empty( $args['include_users'] ) && is_user_logged_in() ) {
    		$args['include_users'] = bp_get_friend_ids( bp_loggedin_user_id() );
    	}
    	return $args;
    }
    add_filter( 'mpp_shortcode_list_media_defaults', 'buddydev_list_friends_media' );
    
    

    Thank You
    Ravi

    • This reply was modified 7 years, 3 months ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: File Upload: Canceling image shows previous file in list #12986

    Hello David,

    Sorry for the late reply. I have checked the issue on your site. The problem might be because media queue is not clearing that is why it keeps on showing. I am looking into it and will get back to you.

    Thank You
    Ravi