Replies
- Ravi on January 18, 2018 at 6:52 am in reply to: Problem Using Conditional Profile Fields for BuddyPress Plugin #12985
Hello Bob,
Thank You for posting. Please point me to the site and also provide me with a screenshot of your field conditions so that I could help
Thank You
Ravi - Ravi on January 18, 2018 at 5:20 am in reply to: [Resolved] mpp-list-media status=friends returns everything #12984
Hello Richard,
Sorry for the inconvenience. Please replace
status="friends"
to
status="friendsonly"
And let me know if it works or not
Thank You
Ravi - Ravi on January 17, 2018 at 1:38 pm in reply to: [Resolved] Is it possible to add sender username to beginning of BP message subject? #12978
Hello Mwale,
I am not much familiar with the app you are saying. So couldn’t provide help with that ask their support team for the help. Just try the following code it might help
function buddydev_modify_single_thread_subject( $subject ) { global $thread_template; $current_message = current( $thread_template->thread->messages ); if ( false !== strpos( $subject, 'Re:' ) ) { $subject = str_replace( 'Re:', '', $subject ); } $new_subject = bp_core_get_user_displayname( $current_message->sender_id ) . ': ' . $subject; return $new_subject; } add_filter( 'bp_get_the_thread_subject', 'buddydev_modify_single_thread_subject' );
Thank you
Ravi - Ravi on January 17, 2018 at 9:41 am in reply to: [Resolved] Order media by newest first (config switch?) #12956
Hello Richard,
Try the following code and let me know if it works or not.
function buddydev_modify_media_order( $args ) { $args['orderby'] = 'modified'; return $args; } add_filter( 'mpp_main_media_query_args', 'buddydev_modify_media_order' );
Thank You
Ravi - Ravi on January 17, 2018 at 8:51 am in reply to: [Resolved] Recent Visitors For BuddyPress Profile #12943
Hello anonim,
Thank you for posting, please point me to the site so that I could help.
Thank you
Ravi - Ravi on January 16, 2018 at 9:29 am in reply to: [Resolved] Is it possible to add sender username to beginning of BP message subject? #12925
Hello Mwale,
Thank you for posting. Please try the following code and let me know if it works or not
function buddydev_modify_message_subject( $message_subject ) { global $messages_template; if ( 'sentbox' != bp_current_action() ) { $current_message = current( $messages_template->thread->messages ); } else { $current_message = end( $messages_template->thread->messages ); } $new_subject = bp_core_get_user_displayname( $current_message->sender_id ) . ': ' . $message_subject; return $new_subject; } add_filter( 'bp_get_message_thread_subject', 'buddydev_modify_message_subject' );
Thank you
Ravi Hello Audiomonk,
Thank you for posting. It seems like a javascript bug which causing the problem. Please check console log for the error. Or try after deactivate other plugins accept MediaPress and BuddyPress with default WordPress theme.
Thank you
Ravi- Ravi on January 13, 2018 at 8:04 am in reply to: File Upload: Canceling image shows previous file in list #12856
Hello David,
Sorry for the inconvenience, Please point me to the site with some demo account details so that I can check and I could help you.
Thank You
Ravi - Ravi on January 4, 2018 at 4:57 pm in reply to: [Resolved] Buddyblog: Hide certain Categories and Tags #12705
Hello PresPhuture,
Sorry for the delayed reply and thank you for sharing the screenshots and the code. Actually, it was a bug in our plugin not BuddyBlog but ‘BuddyPress Simple Front-end Post’. There is a new version available on our site with the bug fix. Please download the latest version of the plugin from the following URL
https://buddydev.com/plugins/bp-simple-front-end-post/
And let me know. If the issues still persists or fix
Thank You
Ravi - Ravi on December 29, 2017 at 4:35 pm in reply to: [Resolved] Buddyblog: Hide certain Categories and Tags #12605
Hello PresPhuture,
Thank you for sharing the screenshot. I have seen the settings and bit surprised that why the code is not working. Can you provide me with some demo details so that I can check Also, post me the code you are using in your ‘bp-custom.php’ file to modify BuddyBlog settings.
Thank You
Ravi