Replies
Hi Nik,
Thank you for clarifying.
you can achieve it by overriding our loop template(posts.php)In that file you will find a code section like this
query_posts( bblgroups_get_posts_query_args( array( 'post_type' => bblpro_get_current_post_type(), ) ) );In that array(where we have passed post type), you can pass any of the params supported by WP_Query
https://developer.wordpress.org/reference/classes/wp_query/
If you are using the ‘Category’, you can pass category__not_in. If you are using a custom taxonomy, you can pass the tax query.
Regards
Brajesh- Brajesh Singh on November 23, 2022 at 2:14 pm in reply to: Help with syncing groups and roles #47412
Thank you for the reply.
Is this happening with the code that @ravisharma provided on github? or is it happening after you made the changes to the plugin?
Regards
Brajesh Hi Nik,
Thank you.At the moment, we don’t have a filter to allow you filtering the permalink of a BuddyBlog specific post.
I will add it in next release. We are dealing with multiple post types now, so It will be a bit different than the previous one. I will post after the update.Regards
Brajesh- Brajesh Singh on November 22, 2022 at 9:12 pm in reply to: [Resolved] autoaccept User Testimonials #47404
Hi,
Thank you for the question.our team will assist you within 48 hours with a working code to achieve it.
Regards
Brajesh - Brajesh Singh on November 22, 2022 at 9:11 pm in reply to: Help with syncing groups and roles #47403
Hi,
I am sorry, we are unable to understand your requirement.can you please explain how it should work(user joins group 1 then happens x, user joins group 2, then happens Y, then user leaves group 1 and so on.). I mean with a detailed example. That will help us assist you better.
Regards
Brajesh Hi Nik,
1. To apply it to user and group both, you may do the followingRemove this
add_action( 'bbl_groups_pre_container_contents', 'bblcustom_disable_em_scope' );and add this
add_action( 'bblpro_actions', 'bblcustom_disable_em_scope' );Is there any way of screening out past events from the tabs? (Events Manager handles this for their own BuddyPress tabs but presumably we’re now removing that filter so is there a way of adding it back in?)
I am sorry, I am unable to answer as I only took a peek at their code and havn’t invested much time. You will need assistance from Events Manager team.
Regards
BrajeshHi Nik,
Thank you for the patience.Please try using this ro remove their scope on our pages.
function bblcustom_disable_em_scope() { if ( ! class_exists( 'EM_Event_Post' ) || ! method_exists( 'EM_Event_Post', 'parse_query' ) ) { return; } $priority = has_action( 'parse_query', array( 'EM_Event_Post', 'parse_query' ) ); if ( $priority ) { remove_action( 'parse_query', array( 'EM_Event_Post', 'parse_query' ), $priority ); } } add_action( 'bbl_groups_pre_container_contents', 'bblcustom_disable_em_scope' );You can put this code in your bp-custom.php
I have not tested this code but this should remove the scope. Can you please tell me if it worked or not?
Regards
Brajesh- Brajesh Singh on November 18, 2022 at 9:10 pm in reply to: Activity Stream conflicts with woo commerce #47388
Hi Gabs,
Please removing the activity as parent from the shop page. it is quiet possible that having Activity as parent page is causing some conflict.Regards
Brajesh - Brajesh Singh on November 17, 2022 at 10:10 am in reply to: Rename Mediapress Tab Title + Changing Media Description Fields #47379
Hi Chris,
Thank you for the questions.1. You may use any of the localization tool or plugin to change labels. MediaPress supports localization.
2. I am sorry but I could not understand your second question about title+description. Please help me uderstand.
3. Yes, it is possible to add extra field using code.
Regards
Brajesh - Brajesh Singh on November 17, 2022 at 9:43 am in reply to: Mediapress Elementor Pro Breaking Layout #47378
Hi Chris,
Is that a BuddyBoss setup(Looks like one)? MediaPress does not work with BuddyBoss(specially their activity).
For BuddyBoss my suggestion is to use their own Media Component
If you still want to use MediaPress, we will look into it and assist you. Please do note that we will not be able to assit with activity uploading in BuddyBoss using MediaPress.Regards
Brajesh