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: 25333
    Brajesh Singh on in reply to: [Resolved] BP Multi Network #22638

    Hi Pat,
    It is supported. It is not a priority but we have been working on to cleanup the code and there will be new release soon.

    For now, if you plan to use it, Use it from github.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Add category to corresponding group #22635

    Thank you for confirming.
    What I suggest is keep the category/groups association mutually exclusive to avoid this issue.

    For limiting the posting to group members only, Please open blog-categories-for-groups/core/bcg-actions.php and replace the function

    
    on_activity_publish
    

    and its code with the following code

    https://pastebin.com/HeTG6xsZ
    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Add category to corresponding group #22630

    Hi,
    I was testing again.

    When a category is associated with multiple groups, The published posts activity is pushed to one of the groups randomly.

    Can you please verify if it not appearing in all groups? It should appear in one of the groups randomly.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Add category to corresponding group #22628

    Hi,
    Thank you.

    1. I consider issue related to selection of multiple category and activity stream a bug and will be pushing a fix today.

    2. I do not consider a user not belonging to group getting their post recorded as a bug. This happens as we record all activities for posts where the associated terms are part f a group to the group(as per your earlier requirement).
    This is not the behaviour of the plugin by default as we expect people to use our front end editor for posting.
    Will be glad to push a fix for this case in future but not now.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Add category to corresponding group #22626

    Hi,
    Please have patience. This is low on priority(It is our last working day of the week) and there are other works I am involved right now. So, it may take a few hours sometimes in my reply.

    I will test the multi category issue and will be posting an update in next couple of hours.

    Also, The last reply is expected behaviour. We do not check for who posts it. The moment you allow it from dashboard, we have no idea if a user is a member or not and will be beyond the scope for this plugin.
    If you want, I can point you to test for membership for groups.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Add category to corresponding group #22623

    Thank you.

    It seems to me that your group with id 4 has proper association.

    1. Please visit a group(any group)
    2. From the manage->Blog Categories, select 2 categories & Save
    3. Visit Dashboard->Posts->New and select at least one of the 2 category.
    4. Publish the post.
    5. Visit activity stream, this will show the correct action.

    If it is not happening, Please disable all plugins and customizations except BuddyPress/ Blog Categories for groups and switch to default theme and try.

    Please let me know what you find.

    PS:- Just to clarify, the posting from front end is not required.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Add category to corresponding group #22620

    Thank you.
    Please login to PHPMyadmin. Select your current database and run the following query.

    
    
    SELECT * FROM wp_bp_groups_groupmeta WHERE meta_key='_bcg_term_id';
    
    

    in the table name “wp_bp_groups_groupmeta”, please replace “wp_” with your own table prefix.

    Let me know what you see there.

    Regards
    Brajesh

    • This reply was modified 6 years, 10 months ago by Brajesh Singh.
  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: [Resolved] Mediapress Permalinks #22617

    Hi Ben,
    We do have this plugin. Ravi had completed it long ago. Please allow me next 2 days to look at it and publish it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: BuddyPress Moderation Tools Customization API #22616

    Hi Youshall Thrive,
    Thank you for using Moderation Tools.

    If you are using our latest version, you can enable the integration from Moderation tools settings page.

    It will automatically add the report button. You can also use following code to add the button manually

    
    		if ( bpmts_user_can_report() ) {
    			echo bpmts_get_report_button( array(
    				'item_id'    => get_the_ID(),
    				'item_type'  => $post_type,
    				'context'    => $post_type,
    				'context_id' => get_the_ID(),
    			) );
    		}
    
    

    The important part are item_id and item_type. Please make sure that you have enable the post type as report able in the settings.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25333
    Brajesh Singh on in reply to: Add category to corresponding group #22615

    Hi,
    Please share me a screenshot of your Blog Categories for Groups page.
    Also, are you comfortable with phpmyadmin? Need to check if group to term ids were synced or not.

    Thank you
    Brajesh