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

    Hi Hans,
    Thank you for using the plugin. The plugin is not aimed at membership site or auto marking of memebr as featured. It is aimed at letting administrators manually mark users as featured.

    If you nee it to automate it, Please feel free to use our customization service.

    https://buddydev.com/buddypress-plugin-customization-service/

    Also, Can you please tell us your theme name. We can try to assist you with the css if feasible and the theme is free. In normal cases, it is better if you ask your theme author to support the plugin as it will make it compatible for all of their users.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Mike,
    Is your goal is to only change the text? If yes, Please use poedit or any of the localization plugin to translate. That would be a lot better.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] BuddyBlog Pro – Custom field types #46299

    Hi Nik,
    I will suggest creating custom field type. The field type can have its own validation rules and will be much cleaner without any hardcoded dependency.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Buddylog Gutenberg #46298

    Hi Josh,
    I am sorry, I am not aware of a Gutenberg API allowing it to use for front end for all users.

    BuddyBoss may use REST API to add the support if they want.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: BuddyPress Profile Completion – BuddyBoss app #46296

    Hi Melvin,
    Thank you for the question.

    The plugin works with the template_redirect hook which is only available when you access the site over web.

    We don’t have any experience with BuddyBoss App. You will need to consult them for assistance.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Free custom template suggestions #46295

    Hi David,
    If you are not using their theme, you will have similar issue.

    As of now, the only other known template pack modification plugin is Youzify/Youzer(though our plugins won’t work with it due to their custom structure/non standard way of modifying templates).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: voting / polling plugin #46286

    Thank you.

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] BuddyBlog Pro – Custom field types #46285

    Hi Nik,
    Thank you.

    We will be able to look at it after the release of the BuddyBlog Groups adodn.

    If you want to create a field yourself, Please take a look at our implementation in buddyblog-pro/core/fields.

    You can create a cusotm field type and register them using the filter ‘bblpro_registered_field_type_classes’

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Gallery Counter in Groups Tab Bar #46284

    Hi Maurice,
    Please open mediapress/modules/buddypress/groups/mpp-bp-groups-group-extension.php

    In that file, on line 29, just before args, please add the following code

    
    			if ( bp_is_group() ) {
    				$count = mpp_get_gallery_count( array(
    					'component'    => 'groups',
    					'component_id' => groups_get_current_group()->id,
    				) );
    			} else {
    				$count = 0;
    			}
    
    

    and then in the args, on line 29, Please change this

    
    'nav_item_name'     => __( 'Gallery', 'mediapress' ),
    

    to

    
    'nav_item_name'                => sprintf( __( 'Gallery <span>%d</span>', 'mediapress' ), $count ) ,
    

    That would do it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Thank you Cristi.