-
Prashant Singh replied to the topic Notifications, mycred page is blank in the forum Creating & Extending 6 years ago
Hi,
With the default theme like twenty-seventeen, I do not see the case, everything looks fine there.
Please check by changing the theme if it works fine for you then certainly your current theme is having the issue.
Thanks
-
Prashant Singh replied to the topic Big problem with activity embeds in the forum How-to & Troubleshooting 6 years ago
https://wordpress.org/plugins/buddypress-activity-plus/ Please check this plugin.
Thanks
-
Prashant Singh replied to the topic Adding Browse Members to Profile in the forum How-to & Troubleshooting 6 years ago
Hi,
Please try this plugin https://wordpress.org/plugins/shortcodes-for-buddypress/ and use members listing shortcode to get the content of the members directory page.
Thanks
-
Prashant Singh replied to the topic ?? Disable clickability of 'user avatars' and eliminate mouseover message..??? in the forum How-to & Troubleshooting 6 years ago
Please try this https://stevenword.com/wordpress/buddypress-disable-the-public-members-directory/
to disable members directory. -
Prashant Singh replied to the topic ?? Disable clickability of 'user avatars' and eliminate mouseover message..??? in the forum How-to & Troubleshooting 6 years ago
1.] eliminate the mouseover message “view ___’s profile” when someone mouses over a User Avatar
2.] make User Avatars not clickable at allThese are the very much project-specific request which not everyone desires so adding that in the plugin is not possible on one request.
3.] disable the Members Directory or exclude all roles from the Membe…[Read more]
-
Prashant Singh replied to the topic Change direction link from member loop php in the forum Creating & Extending 6 years ago
Welcome 🙂
-
Prashant Singh replied to the topic Change direction link from member loop php in the forum Creating & Extending 6 years ago
Hi,
Please write this line in your wp-config.php:
define('BP_DEFAULT_COMPONENT', 'profile' );
Thanks
-
Prashant Singh replied to the topic ARGH — A 'horizontal ellipsis' is preventing display of 'group description' in the forum How-to & Troubleshooting 6 years ago
It’s not an issue. They have already provided a filter to change it to any length you want. So, I do not take it as an issue.
-
Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 6 years ago
Hi,
You can use this plugin https://wordpress.org/plugins/bp-registration-options/ which allows moderation and members will be restricted to their own profile till when they are not approved. And after approval, a mail will be sent to them.
Maybe this solution can help you with what you want to achieve.
Thanks
-
Prashant Singh replied to the topic ARGH — A 'horizontal ellipsis' is preventing display of 'group description' in the forum How-to & Troubleshooting 6 years ago
Hi,
I think you are using nouveau template pack because in the legacy it is not the case.
But with nouveau also they have provided a filter
apply_filters( 'bp_excerpt_length', $length );
which one can use to write their function to change the length of the excerpt.
add_filter( 'bp_excerpt_length', 'ps_change_excerpt_length',10,1…
[Read more] -
Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 6 years ago
Welcome 🙂
-
Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 6 years ago
add_filter( 'gettext', 'ps_change_activation_message', 20, 3 );
function ps_change_activation_message( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.'…[Read more] -
Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 6 years ago
https://wordpress.org/plugins/code-snippets/ Please add this plugin and then in snippets add a new snippet and paste the code.
Thanks
-
Prashant Singh replied to the topic Solved – Disable Automatic Account Activation and Manually Approve it in the forum How-to & Troubleshooting 6 years ago
add_filter( 'bp_core_signup_send_activation_key', 'ps_disable_activation_email' );
function ps_disable_activation_email() {
return false;
}Please try this code.
-
Prashant Singh replied to the topic [VERY URGENT] Register page not showing in the forum How-to & Troubleshooting 6 years ago
Welcome 🙂 Glad to help you.
-
Prashant Singh replied to the topic How to Submit Registration and Redirect in the forum Creating & Extending 6 years ago
function ps_bp_redirect($user) {
$redirect_url = 'your_url_here';
wp_safe_redirect( add_query_arg( array( 'user' => $_POST['signup_username'] , 'email'=> $_POST['signup_email']), $redirect_url ) );
}
add_action('bp_core_signup_user', 'ps_bp_redirect', 100, 1);This code will add query parameters in the URL itself, from there try to…[Read more]
-
Prashant Singh replied to the topic Problem Profile Visibility Settings in the forum Installing BuddyPress 6 years ago
Hi,
That is a default profile field and you can not change the visibility of that. But if you will create other profile fields then you will be able to change their visibility easily.
Thanks
-
Prashant Singh replied to the topic Can Buddy Press use Forgot Password Key in the forum How-to & Troubleshooting 6 years ago
Happy New Year to you and your family.
Wish you the same.
I think you can go for a custom reset password solution: https://code.tutsplus.com/tutorials/build-a-custom-wordpress-user-flow-part-3-password-reset–cms-23811
Thanks
-
Prashant Singh replied to the topic ARGH — A 'horizontal ellipsis' is preventing display of 'group description' in the forum How-to & Troubleshooting 6 years ago
Hi,
I have tested the same with one of the default themes twenty-seventeen. Please see: https://prnt.sc/lfu9f6
As you can see I am on the page where all the groups are listed, I am a member of. So it seems the theme you are using is creating that issue.
Thanks
-
Prashant Singh replied to the topic How to display this type of header? in the forum Creating & Extending 6 years ago
Hi,
It will need a custom header designing work. There is no such code for that.
Thanks
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago