Replies
- Brajesh Singh on September 2, 2022 at 7:08 pm 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 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- Brajesh Singh on September 2, 2022 at 7:01 pm 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 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- Brajesh Singh on September 1, 2022 at 6:37 pm 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 Hi Maurice,
Please open mediapress/modules/buddypress/groups/mpp-bp-groups-group-extension.phpIn 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- Brajesh Singh on September 1, 2022 at 2:58 pm in reply to: [Resolved] Pay Per Post by selling access with WooCommerce #46282
Thank you Cristi.
- Brajesh Singh on September 1, 2022 at 2:56 pm in reply to: BuddyPress Group Tabs- Nesting existing tabs? #46281
Hi Michael,
Thank you for being a valuable member.This is a limitation of BuddyPress/BuddyBoss. Their url is bound with callback and if we try to change that It does not work.
The reason is BuddyPress/BuddyBoss uses the slug part in the url for action/componets instead of having something else to deremine the current state.
I am very sorry about this but this is currently a limitation imposed by the base plugin and there is not much we can do.
Regards
Brajesh - This reply has been marked as private.