Replies
Hello Giuseppe,
Thank you for the acknowledgement. I will recheck it and will acknowledge you within 24 hrs.
Regards
RaviHello Tosin,
SOrry for the delayed reply. Is this issue fixed or not. Please let me know?.
Regards
Ravi- Ravi on April 18, 2022 at 7:32 am in reply to: Translation buddypress member blog doesn’t work #44465
Hello Paulien,
Sorry for the delayed reply. Translated files under the system directory will not be overridden when you update the plugin. So, you can use this directory for your translated file.
Regards
Ravi - This reply has been marked as private.
Hello Fabien,
Thank you for sharing the information that caused the conflict. I am glad that The problem is resolved on your own.
Regards
Ravi- This reply has been marked as private.
Hello Tosin,
You can use ‘bp_is_buddyblog_component’ for BuddyBlog or ‘bblpro_get_queried_post_id’ for BuddyBlog Pro plugin to limit the_excerpt call.
Please try the following code:
add_filter( 'the_excerpt', function ( $excerpt ) { if ( ! function_exists( 'Post_Views_Counter' ) ) { return $excerpt; } $alter = false; if ( function_exists( 'bp_is_buddyblog_component' ) && bp_is_buddyblog_component() ) { $alter = true; } elseif ( function_exists( 'bblpro_get_queried_post_id' ) && bblpro_get_queried_post_id() ) { $alter = true; } if ( ! $alter ) { return $excerpt; } return $excerpt . do_shortcode( '[post-views]' ); } );
Regards
Ravi- Ravi on April 11, 2022 at 5:52 am in reply to: Translation buddypress member blog doesn’t work #44369
Hello Paulien,
Thank you for the acknowledgement. BuddyBlog plugin fully supports translatable strings. Can you please let me know which strings you are translating?. I have tested this plugin on my local server and it is working fine for me.
Regards
Ravi Hello Tosin,
Try this one:
add_filter( 'the_excerpt', function ( $excerpt ) { if ( ! function_exists( 'Post_Views_Counter' ) ) { return $excerpt; } return $excerpt . do_shortcode( '[post-views]' ); } );
Regards
Ravi- Ravi on April 8, 2022 at 9:33 am in reply to: Can I hide “Add Friend” buttons when viewing Buddypress Profile>Friends? #44345
Hello Michael,
Thank you for the acknowledgement. I am glad that I could help you.
Regards
Ravi