BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25130

    Thank you for updating. I am happy it is resolved now 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25130
    Brajesh Singh on in reply to: [Resolved] Activity Stream On Profile #1493

    Hi Joshua,
    Thank you for asking.
    In your custom activity page, at the top, check if you have a code like this

    
    <?php bp_get_template_part( 'activity/post-form' ); ?>
    

    If you have it, please put it inside an if block like this

    
    	<?php if ( is_user_logged_in() ) : ?>
    
    		<?php bp_get_template_part( 'activity/post-form' ); ?>
    
    	<?php endif; ?>
    
    

    That will do it.
    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25130
    Brajesh Singh on in reply to: [Resolved] Blog categories #1486

    Thank you.

    Putting in child theme’s functions.php should work fine too. Any chance you are on multisite and that child theme is not being used on your current site?

  • Keymaster
    (BuddyDev Team)
    Posts: 25130
    Brajesh Singh on in reply to: Mediapress Parent & Child sub galleries? #1482

    Thank you so much 🙂
    Please do let me know if you need any assistance with BuddyPress. Will be happy to assist.

  • Keymaster
    (BuddyDev Team)
    Posts: 25130
    Brajesh Singh on in reply to: [Resolved] Blog categories #1481

    Hi,
    Here is the code

    
    
    add_filter( 'buddyblog_post_form_settings', 'buddyblog_show_custom_cats', 100 );
    
    function buddyblog_show_custom_cats( $settings ) {
    	$tax = array();
    	 
    	$tax['category'] = array(
    
    		'taxonomy'		=> 'category',
    		'view_type'		=> 'checkbox',
    		'include'		=> array( 1, 35,97 ), //CHANGE It with the correct IDs,
    		'orderby'		=> 'slug',
    		'order'			=> 'ASC'
    	);
    	
    	$settings['tax'] = $tax;
    	
    	return $settings;
    }
    

    Please change ids to your allowed categories and It will only list them.
    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25130

    Hi Brayden,
    I am glad it is resolved. The plugin will not allow others to see your anonymous post but only th user who posted it can see that(We did it on purpose to allow the user to later edit/delete those activities).

    Thank you for marking it resolved. Closing the topic now.

    Regards
    Brajes

  • Keymaster
    (BuddyDev Team)
    Posts: 25130
    Brajesh Singh on in reply to: Mediapress Parent & Child sub galleries? #1477

    Hi Chelle,
    Welcome to BuddyDev and thank you for joining Premium membership.
    I appreciate your support.

    Currently, there is no child galleries but in future I do have plan to introduce album feature(for WordPress galleries, that will make it possible).
    Thank you so much for your kind words. I appreciate it and It is always nice to know that my worked helped even a little bit 🙂

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25130
    Brajesh Singh on in reply to: Setting upload limits by User/Group #1476

    Hi George,
    Glad that you found it. The documentation is linked at the right side “Documentation” link for all the plugins.
    For anyone else looking for documentation, Here is a direct link

    https://buddydev.com/mediapress/topics/addons/mpp-flexible-storage-limit/configuring-mpp-flexible-storage-limit-plugin/

    Please do let me know if that works for you or not?

  • Keymaster
    (BuddyDev Team)
    Posts: 25130
    Brajesh Singh on in reply to: [Resolved] Blog categories #1468

    Thank you. I will post the code in an hour.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25130

    Thank you George 🙂