BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25206
    Brajesh Singh on in reply to: [Resolved] BuddyPress Editable Activity To-dos #1512

    Hi Hans,
    Have updated the plugin. That fixes the first and the 3rd point.

    I will need a few days before i experiment with wysiwyg editor though.

    Please upgrade to version 1.1.2

    https://buddydev.com/plugins/bp-editable-activity/

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25206
    Brajesh Singh on in reply to: [Resolved] BuddyPress Editable Activity To-dos #1509

    Hi Hans,
    Thank you for opening the topic.
    I will do 1st and 3rd today. Will be looking to address some lightweight wysiwyg editor but not 100% positive about that.

  • Keymaster
    (BuddyDev Team)
    Posts: 25206
    Brajesh Singh on in reply to: [Resolved] Custom post fields in buddyblog #1507

    Hi Martin,
    I am sorry for the delayed reply.
    The problem is BP Simple Front End post currently does not support date & URL. I will need to update the simple front end post plugin first. Please give me till Monday and I will add these.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25206
    Brajesh Singh on in reply to: [Resolved] Custom BP Groups Tab/Page #1506

    Hi Joshua,
    Thank you for asking.
    Though I am not 100% sure, I will try to explain a few things and may be some of them might be useful.

    1. with bbPress it is possible for each group to have separate forums but the forums will be available to all members, I don’t think that is something you want

    2. It is easy to add a link in group navigation that will take user to some other page on the site, will that work?

    3. If we need to show a Page inside the group(not just link), we will need to use group extension and some content to show. Is this that you are looking for?

    Can you please let me know which approach are you looking for or is it something else?

    Thank you
    Brajesh

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

    Thank you. I am glad it is all good now 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25206
    Brajesh Singh on in reply to: Trying to improve the Group home page #1499

    Hi George,
    If you got the fatal error, most probably you have forums component disabled.

    If you haven’t installed bbPress yet, please install the bbPress plugin. After that visit BuddyPress settings and enable forums component.
    After that code should work fine.

    To include the post form, we can just add another snippet like this

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

    And that will include the the post form. Hope that helps.

    Please do let me know how it goes with you.

  • Keymaster
    (BuddyDev Team)
    Posts: 25206
    Brajesh Singh on in reply to: Trying to improve the Group home page #1497

    Hi George,
    Have you upgraded to BuddyPress 2.4, if yer, there are some good news.

    In BuddyPress 2.4 you can have custom home page for all groups by using a custom template file front.php

    More details here
    https://bpdevel.wordpress.com/2015/10/03/get-ready-2-4-0-will-introduce-important-changes-in-groups-homes/

    Once you have got front.php, It is all about including the loops.

    Use

    
    <?php bp_get_template_part( 'forums/forums-loop' ) ?>
    
    <?php bp_get_template_part( 'activity/activity-loop' ) ?>
    

    and so on to include the latest content from these. The only concern is these loops will generate 20 items and not 10.

    There is a filter on bp_ajax_querystring that we can use to limit the result to 10. But first, can you please give the above a try and see if it works for you or not?

    PS: A widget for MediaPress recent photos/galleries as slider will come. I am a little bit busy with our upcoming theme next week and blog categories plugin, that’s why things seem a little slower around.

  • Keymaster
    (BuddyDev Team)
    Posts: 25206

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

  • Keymaster
    (BuddyDev Team)
    Posts: 25206
    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: 25206
    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?