-
Prashant Singh replied to the topic Is integration with MailPoet possible? in the forum Third Party Plugins 6 years, 1 month ago
Hi,
This is the plugin https://wordpress.org/plugins/wysija-newsletters/ that you can use but will need customization to restrict as per check box value.
https://www.mailpoet.com/buddypress-case-study/ Also try to consult with mailpoet once.
Thanks
-
Prashant Singh replied to the topic Can Buddypress build a community like this one? in the forum Creating & Extending 6 years, 1 month ago
In particular,Iād like to distinguish between organizations and individuals.
The organizations apply to build communities, and organizations can post blogs in established communities to answer questions, free and paid features.
The data discussed by members can be saved and can be provided to scientific institutions for analysis.
Hi,…[Read more]
-
Prashant Singh replied to the topic Activation Email in the forum Miscellaneous 6 years, 1 month ago
Welcome š Glad to know that it helped š
-
Prashant Singh replied to the topic Private Blogs in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please put this snippet in child theme’s functions.php file:
function ps_private_posts( $query ) {
if(is_user_logged_in()){
if ( $query->is_archive() && $query->is_main_query() ) {
$query->set( 'author', get_current_user_id());
}
}
}
add_action( 'pre_get_posts', 'ps_private_posts' );Hopefully, it will help…[Read more]
-
Prashant Singh replied to the topic Default Landing group while editing Member profile in the forum How-to & Troubleshooting 6 years, 1 month ago
Welcome š
-
Prashant Singh replied to the topic Is it possible in Buddy Press to give only permission to delete private message in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
<?php if(current_user_can('manage_options')){ ?>
[Read more]
<button type="button" class="message-action-delete bp-tooltip bp-icons" data-bp-action="delete" data-bp-tooltip="<?php esc_attr_e( 'Delete conversation.', 'buddypress' ); ?>">
<span class="bp-screen-reader-text"><?php esc_html_e( 'Delete conversation.', ',buddypress' );… -
Prashant Singh replied to the topic Links in members-loop for Profile Field in the forum Installing BuddyPress 6 years, 1 month ago
Glad to know that it helped š
-
Prashant Singh replied to the topic Activation Email in the forum Miscellaneous 6 years, 1 month ago
Try to disable lazy loading in jetpack.
Thanks
-
Prashant Singh replied to the topic Links in members-loop for Profile Field in the forum Installing BuddyPress 6 years, 1 month ago
Hi,
I found that those links are generated from the plugin Custom Profile Filters For BuddyPress and it only works on profile. So to get the same data with the link on members-loop.php we need to print fields like this:
$data = bp_get_member_profile_data( 'field=Expertise' );
[Read more]
echo '<a href="' . bp_get_members_directory_permalink() .… -
Prashant Singh replied to the topic Disable usernames or display a profile field instead in the forum Creating & Extending 6 years, 1 month ago
Hi,
Please try this snippet: https://pastebin.com/kZQnQaJA
Just replace:
1. user_login with user_id
2. poster_login with poster_id
3. topic_last_poster_login with topic_last_poster_idThanks
-
Prashant Singh replied to the topic Private Blogs in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Is it a custom template where blogs are listing or default WordPress blog page?
Thanks
-
Prashant Singh replied to the topic Points system in the forum Creating & Extending 6 years, 1 month ago
Welcome š
-
Prashant Singh replied to the topic Default Landing group while editing Member profile in the forum How-to & Troubleshooting 6 years, 1 month ago
function ps_change_default_profile_group() {
if ( ! bp_is_user_profile_edit() || ! bp_is_my_profile() ) {
return;
}$group_id = 2;
if ( bp_get_current_profile_group_id()==1 ) {
bp_core_redirect(bp_displayed_user_domain()."profile/edit/group/2/");
}
}add_action( 'get_header', 'ps_change_default_profile_group', 1 );
Hi, please…[Read more]
-
Prashant Singh replied to the topic Points system in the forum Creating & Extending 6 years, 1 month ago
I have used many times. The link I gave is a free plugin so you can give a try. That user must have tried the paid version which he didn’t liked.
It is acquired by WP Experts https://mycred.me/news/new-ownership/ and it is true but still you can try the free version to check if it fulfill your need. I hope that it will.Thanks
-
Prashant Singh's profile was updated 6 years, 1 month ago
-
Prashant Singh replied to the topic profile page sidebar assignment in the forum How-to & Troubleshooting 6 years, 1 month ago
Welcome š
-
Prashant Singh replied to the topic Is it possible in Buddy Press to give only permission to delete private message in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please try to find the template named index.php in bp-templates/bp-nouveau/buddypress/common/js-templates/messages/index.php and there you will find the HTML. You just need to put that button code in condition of yours. That is if user role is this then only show otherwise not.
You can try:
if(current_user_can('manage_options')){ ?> //…
[Read more] -
Prashant Singh replied to the topic Is Buddypress compatible with optimizepress and/or infusionsoft in the forum Third Party Plugins 6 years, 1 month ago
Here https://megankharrison.com/technology-memberium-ten-online-course-features/ is one of the good article that eaxplains how these things can work together.
Thanks
-
Prashant Singh replied to the topic Translate the emails in the forum How-to & Troubleshooting 6 years, 1 month ago
Hi,
Please check this: https://buddypress.org/support/topic/translation-email/
Just need to go to Dashboard > Emails and customize any email.
Thanks
-
Prashant Singh replied to the topic Points system in the forum Creating & Extending 6 years, 1 month ago
- Load More
@prashantvatsh
Active 3 months, 3 weeks ago