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: 25485
    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: 25485
    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

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

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

    Hi,
    I am sorry for the inconvenience.

    I have tried it today and it has been working.

    Do you have blogs post recording enabled in BuddyPress settings?

    Aldo, are you using any custom post type/taxonomy?

    Is the blog post being recorded in the sitewide stream?

    Please let me know anf I will assist further.

    Ps: I have left for the day. Will be able to assist you from 9AM IST tomorrow.

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Mic,
    My apologies for the inconvenience.

    Please allow us to check it tomorrow and get back to you.

    Thank you
    Brajesh

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

    Hi,
    Thank you for the patience.

    1. Please upgrade to 1.3.1 from here

    https://buddydev.com/plugins/blog-categories-for-groups/

    Once you have saved the terms association for group(re-saved), any new post published with the terms will be added to group activity stream.

    2. To enable listing the posts on the group’s blog page, Please visit Dashboard->settings->Blog Categories for Group and set “In the group post list, Include posts which were not published from group?” to “yes”.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Kristian,
    Thank you for the topic.

    You may use something like this

    
    .bp-notification-widget-notifications-list {
        padding: 20px;
    }
    .bp-notification-widget-notifications-list li {
        list-style-type:disc;
        margin-bottom: 10px;
    }
    
    

    Most probably it should work.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: CSS styling the Invite Friends plugin in Youzer #22601

    Hi Kristian,
    You can add the following css

    
    
    .widget.invite-anyone p,
    .widget.invite-anyone form {
      padding: 20px;
    }
    
    

    That should make it a bit better.

    Reagards
    Brajesh