Replies
- Brajesh Singh on November 20, 2023 at 6:14 pm in reply to: Group Tabs dynamic url remove last / #50898
Hi,
Thank you for the reply.
I am sorry for the delayed response.we are not adding the trailing slash. It is BuddyPress/BuddyBoss whose
bp_get_group_permalink()is doing it.Yes, we can add a filter to allow you do it. You can run untrailingslash on the permalink to achieve your goal.
We will push an update this week with the same.
Regards
Brajesh - Brajesh Singh on November 20, 2023 at 2:35 pm in reply to: MediaPress Page 2 – 404 not working #50895
Hi Andy,
Thank you for your details.
I am sorry for the delay.Can you please tell me if the pagination for your site archive pages are working ?
The only difference I see is use of nginx and multisite.
Regards
Brajesh - Brajesh Singh on November 20, 2023 at 1:41 pm in reply to: Media Press how can i disable showing update on activity page for new user reg #50894
Hi,
I am sorry, MediaPress does not create any new activity on user registration.You are mistaking it for something else, Please re-check your setup.
Regards
Brajesh Hi,
Thank you for the question.
I am sorry, there is no api for the profile tabs available at the moment.Regards
Brajesh- Brajesh Singh on November 14, 2023 at 4:12 pm in reply to: Request to add Lightbox for single page view in Mediapress #50875
Hi,
I am sorry, we haven’t started any work on this. We will start with it on 17th and update you next week.Thank you
Brajesh Hi Mark,
Thank you for the question. You may use on of the following:-1. Disable for all text area:-
add_filter( 'bp_xprofile_is_richtext_enabled_for_field', function ( $enabled, $field_id ) { $enabled = false; // disable for all text area. return $enabled; }, 10, 2 );2. Or disable for specific text areas
add_filter( 'bp_xprofile_is_richtext_enabled_for_field', function ( $enabled, $field_id ) { $textarea_field_ids = [ 25, 45 ]; // your text area field ids, Please update if ( $field_id && in_array( $field_id, $textarea_field_ids ) ) { $enabled = false; // disable for the specific text area. } return $enabled; }, 10, 2 );Please feel free to use as you please.
Regards
Brajesh- Brajesh Singh on November 14, 2023 at 2:18 pm in reply to: [Resolved] auto follow featured members #50873
Hi Tosin,
I will suggest adding a wrapper to ‘count_user_posts’ and caching the value in transient. That way, you will only need to flush the cache for author on new posts and there will be almost 1 total count calculation per author irrespective of number of queries(and you will only need to count if the author publishes a new post).Regards
Brajesh Hi Paul,
I am sorry for the experience.1. Please make sure that the shortcodes are exactly like they are suggested by the plugin author(I assume you are using the Modern Event Calander)
2. If it is still not working, Please ask plugin author if they have limited the shortcode in page/posts only( I have seen some of the authors doing it).
If they do not assist you with 2nd, we can look into their plugin to assist you.
Regards
Brajesh- Brajesh Singh on November 14, 2023 at 2:02 pm in reply to: MediaPress problem when using Amazon AWS CDN #50871
Hi Bruno,
Thank you for the question.
MediaPress is not doing the replacement. Which offloading plugin are you using? It is probably that plugin replacing the urls.As far as I am aware, the AWS S3 offload does not support MediaPress. We tried our own in past for limited time but dropped in favour of having a generic plugin. Our own storage offload plugin for BuddyPress eco system will be available in first week of January(or earlier).
In the meantime, If possible, Please avoid offloading for MediaPress media files(If the plugin is not excluding it, we can look into that and may be able to assist).
Regards
Brajesh - Brajesh Singh on November 14, 2023 at 1:57 pm in reply to: [Resolved] How to disable new user welcome email for admins #50870
Hi Tosin,
Thank you for the topic/replies.This is something you will need to be watchful as some of the plugins do override the ‘wp_new_user_notification_email’. All you need to do is apply your filter at lower priority.
Regards
Brajesh