BuddyDev

Search

Replies

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

    Hello Froi,

    Sorry for the inconvenience. I have some question.

    1. Is media is uploading to the activity?. Please do check in upload directory as well i.e. uploads/mediapress/…
    2. Is there any activity specific plugin activated on your site?.

    Please share the screen shots.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Pics/Video Reorder #23192

    Hello Jack,

    Thank you for posting. I have checked reordering feature with images and it is working fine for me. Please open your console(press f12 to open and reload page) window and check weather any javascript error is showing or not. Please let me know and share the screen shots.

    Regards
    Ravi

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

    Hello Jack,

    Thank you for posting. Please share your custom code you are using to add the link under image. So that I can help.

    Regards
    Ravi

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

    Hello Imborx,

    I have updated some code. Please check now and let me know if everything works or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    This reply has been marked as private.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Using custom taxonomy with Mediapress galleries #23097

    Hello Becky,

    Just posted one more plugin which allows user to add category to their gallery at the time of creation or at edit detail page of gallery. Users can also filter gallery based on category on gallery directory page using dropdown. Please give it a try and let me know is it works for you or not. You can download the code form the following url:

    https://github.com/mediapress/mpp-gallery-category/archive/master.zip

    Regards
    Ravi

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

    Hello Imborx,

    We have made some changes to the plugin. Please update the plugin and let me know, If the issue still persists either me or one of our team member will help you on weekends.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Search Activity Meta #23029

    Hello Barry,

    Thank you for the acknowledgement. I am glad that code worked.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Share from within site to Buddypress #23028

    Hi Vivek,

    Please download the latest code for plugin, We have introduced a new filter you can use to conditionally load share as activity button.

    you can check the filter “bp_custom_share_post_to_activity_button_show”

    Point 2: WordPress generate html for embedded link that why you are seeing that share link.

    Point 3: At the moment we are unable to add this.

    Regards
    Ravi

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

    Hello,

    Please try the following code and let me know.

    
    function buddydev_skip_profile_completion_check( $skip ) {
    	if ( isset( $_GET['fb'] ) && 'registered' == $_GET['fb'] ) {
    		$skip = true;
    	}
    
    	return $skip;
    }
    add_filter( 'bp_force_profile_completion_skip_check', 'buddydev_skip_profile_completion_check' );
    
    

    Regards
    Ravi