We have set up Courses with Buddypress Course Groups attached to the course, but course enrollees are not automatically added to the relevant Buddypress group?
We have added the relevant course to the Buddypress group, but still course enrollees cannot access the attached Buddypress group.
Can you advise on proper setup?
Thanks
]]>Hello,
I would like to know how can i asign course to many BuddyPress groups .
Thanks
]]>Hi,
I am having an issue. Your plugin is not showing the certificate icon on the “my courses” page within BuddyPress.
Who can assist?
Hi,
Our users on our platform are not able to easily change their username and user info. Could you please help us resolve this issue?
Thanks in advance,
Finn L.
]]>Hi there,
Just wondering if, with the latest version of BuddyBoss Platform and Theme (Pro versions) this plugin here is still needed. It appears to be 2 years ago, so something tells me the features may have been incorporated into BuddyBoss.
Thanks for the help!
]]>Hi,
I’ve been having issues with Learndash. Two key issues I’ve experienced:
1. When I add a course category, it just loads forever. However, when I refresh it, the update is reflected. But to add categories, I had to always refresh after inputting details and clicking create.
2. When I try to upload a featured image in a course, it’s not working. I always get an “Updating failed” result and the course just ‘updates’ and ‘saves’ forever. When I refresh it, it doesn’t work.
I’ve tried deactivating some plugins but it didn’t do anything. Hoping to get solutions for this. Thanks!
]]>removed as I’m in the wrong board.
]]>No matter what I do, I just can’t get BUDDYPRESS ACTIVITY to work.
– User starts a course
– User completes a course
– User creates a lesson
– User completes a lesson
– User passes a quiz
– User comments on single lesson page
Nothing syncs to the Buddypress groups at all. I can get users to be assigned to the group, but what’s the point if nothing gets logged ??
Would love some help from anyone who has been struggling with this before me.
]]>Hi there!
I’m having an issue where the “courses” tab for members isn’t displaying correctly. It’s showing double text in two headings (I think h2 and h3) for “Enrolled Courses” and the actual name of whatever courses the member is enrolled in through LearnDash. I’ve actually deactivated this plugin and have made AutomatorWP automations to auto add enrolled members into the correct groups, but I’d prefer to use “Buddypress for Learndash” if possible; it’s a bit of a time saver.
Right now, with it off, I’ve just created my own “courses” tab using Learndash’s [ld_profile] shortcode and a custom profile tabs plugin, but does anyone know how I could fix the tab that is automatically created on the members’ profiles with BuddyPress for LearnDash?
Thanks!
]]>I am facing an issue while activating the plugin.
Fatal error: Cannot redeclare bp_learndash_user_course_access_update() (previously declared in /home/customer/www/holosports.pro/public_html/wp-content/plugins/holosports-customization/includes/bp-learndash-functions.php:696) in /home/customer/www/holosports.pro/public_html/wp-content/plugins/buddypress-learndash/includes/bp-learndash-functions.php on line 696
There has been a critical error on this website. Please check your site admin email inbox for instructions.
Learn more about troubleshooting WordPress.
]]>
I’m not sure if it is learndash or buddyboss issue, but so I’m asking both. Whenever I update my course by adding some additional lessons, it updates the lessons list – https://prnt.sc/1185e9g – but it is not being added inside the course – https://prnt.sc/1185g0x What can I do?
]]>Hi,
There is 2 My Courses tab under Profile Courses.
Why is that and how can I fix it?
Regards.
]]>Hi
when we wanna creating a learndash group, there is a box that says do you wanna have a social group? and there is a list if you want to match current learndash group to one of social groups!
1. But, The list doesn’t show all of our social groups, we have a lot, but it doesn’t show them all. just some of them listed.
3. we have instructor addon for learndash, the instructor should not has access to sees the groups that admin created, but he sees it! he even see the hidden groups that admin created and can connect his ld group to that.
Better an update? thanks.
]]>Hi.
when I activate this plugin, the site.com/users that has user filters, not working anymore.
why this happend?
]]>Hi
how can we hide students and group leaders tab that created in users?
we want learndashbuddy press for the forum for our online courses.
but the issue we are facing is that we can not use learndash registration form it forces us to create through a BuddyPress and redirected to this page https://centerforcps.com/register/ I want users can do registrar through learning dash registration only.
how I can manage only one registration, not through BuddyPress.
please help me further
Looking forward to hearing from you
Hi
https://pasteboard.co/JqKpSrs.png
how to prevent displaying tabs “group leaders” and “students”?
@bbwpsupport
Hi.
when another user press “courses” tab of another user, the first user cant see the other user courses.
and we installed multiple instructor plugin for learndash, user can not even see that instructor courses in the instructor’s profile courses tab.
solve this plz. TNX
]]>Hello!
I only want to use this plugin so that comments created within lessons are posted/shared within buddypress groups that are tied with the relevant course.
After installing the plugin and setting it up, I was impressed as it seemed to do the trick after posting a test comment in the first lesson of a course. However, I shortly discovered that for some reason this only works with ONE single lesson? For example..
I post a comment in Lesson1, it shows in the group activity feed. I post a comment in Lesson2 (or any other), the comment does not display in the group activity feed.
How is it possible that the plugin would only work with one lesson and not all lessons?
I have tried deactivating all plugins and changing themes to see if there are any conflicts, but I have found none.
Previously, I was using this code:
/* Post Comments in Buddypress Activity */
function bca_record_activity($comment_id, $approval) {
if($approval == 1) {
$comment = get_comment($comment_id);
$userlink = bp_core_get_userlink($comment->user_id);
$postlink = '<a href="' . get_permalink($comment->comment_post_ID) . '">'
. get_the_title($comment->comment_post_ID) . '</a>';
bp_activity_add(array(
'action' => sprintf( __( '%1$s commented on the lesson: %2$s', 'buddypress' ),
$userlink, $postlink),
'content' => $comment->comment_content,
'component' => 'bp_plugin',
'user_id' => $comment->user_id,
'type' => 'new_blog_comment',
));
}
}
//comment_post is triggered "just after a comment is saved in the database".
add_action('comment_post', 'bca_record_activity', 10, 2);
// We want activity entries of blog comments to be shown as "mini"-entries
function bca_minify_activity($array) {
$array[] = 'new_blog_comment';
return $array;
}
add_filter('bp_activity_mini_activity_types', 'bca_minify_activity');
// Disables comments on this type of activity entry
function bca_remove_commenting($can_comment) {
if($can_comment == true) {
$can_comment = ! ('new_blog_comment' == bp_get_activity_action_name());
}
return $can_comment;
}
add_filter('bp_activity_can_comment', 'bca_remove_commenting');
Is there any way I might be able to simply adapt that code so that rather than comments appearing in activity feeds, they rather appear in the corresponding course group associated with the lesson?
Thanks!!
]]>Hello,
Is there something I have to do to get the usernames of those who take LearnDash quizzes to show on leaderboards? I’ve installed the integration and have tried taking quizzes that I created both before and after installing, but no names are registering in any situation. Please let me know if there’s something I need to do to make this happen.
Thanks
]]>Hi,
Imagine I create a course that I want several companies to take. I only want one copy of the course, but I’d like several companies to take the same course. I’d like to have a group and forum for each company I sell the course to so that the colleagues can communicate only with people from their company, but I’d like all these different elements taking the one course. I don’t want to have a different instance of the course for each company because then keeping the course up to date would easily turn into a huge headache, updating multiple copies of the same course.
Is this scenario possible with LearnDash, bbpress and buddypress?
Thanks in advance!
]]>?Hola!
?Cómo se puede mostrar los cursos creados por una persona? Actualmente puedo mostrar los cursos que el estudiante ha tomado, pero necesito que en el perfil de los instructores también se pueda mostrar los cursos que crearon.
]]>Hi!
When I comment on a course page, the comment shows on the connected groups activity stream in buddypress as expected. But when I am on a lesson or topic page and comment, nothing shows in the activity stream. I have ticked all the boxes on the course activity settings page regardning comments. How can I throubleshoot this?
Thanks!
Hi Buddyboss support,
Thank you for this plugin. It would be great to know if there was a premium version in the mix. ??
This is a follow up inquiry from the below issue which was logged just over a year ago where:
“The list show all groups created by different users.
The user can chose the other user’s group to add the course to this different user’s group. And then this user become other group admin of the group added course.”
This was logged as an issue early last year. Did you know if this has been repaired and might be released upcoming updates?
Also, is it possible future updates will enable multiple courses per groups?
Thanks in advance,
Bernard
Add course to a BuddyPress group issue
bluevert (@bluevert)
1 year, 3 months ago
Hello support team
There is an issue when a user publish a new course at learndash platform.
At the right sidebar of learndash , “Course group” Add this course to a buddypress group”.
The list show all groups created by different users.
The user can chose the other user’s group to add the course to this different user’s group. And then this user become other group admin of the group added course.
How to correct this issure so that not show other user’s group when add a new course?
Thanks for your answer.
]]>Hello,
This is a fresh install and we just went live. However, the following error is recorded into the logs. Any idea?
[26-Mar-2020 16:52:28 UTC] PHP Fatal error: Uncaught Error: Call to undefined function groups_is_user_member() in /home/XXXXXXXXXXXXXwp-content/plugins/buddypress-learndash/includes/bp-learndash-functions.php:701
Stack trace:
#0 /home/XXXXXXXXXXXXXwp-content/plugins/buddypress-learndash/includes/bp-learndash-loader.php(596): bp_learndash_user_course_access_update(16, 2158, false)
#1 /home/XXXXXXXXXXXXXwp-includes/class-wp-hook.php(288): BuddyPress_LearnDash_Loader->user_update_course_access(16, 2158, NULL, false)
#2 /home/XXXXXXXXXXXXXwp-includes/class-wp-hook.php(312): WP_Hook->apply_filters(NULL, Array)
#3 /home/XXXXXXXXXXXXXwp-includes/plugin.php(478): WP_Hook->do_action(Array)
#4 /home/XXXXXXXXXXXXXwp-content/plugins/sfwd-lms/includes/course/ld-course-functions.php(736): do_action('learndash_updat...', 16, 2158, NULL, false)
#5 /home/XXXXXXXXXXXXXwp-content/plugins/sfwd-lms/includes/lib/paypal/ipn.php(293): ld_update_course_access(16, 2158)
#6 /home/tw in /home/XXXXXXXXXXXXXwp-content/plugins/buddypress-learndash/includes/bp-learndash-functions.php on line 701
Thanks.
]]>I have a question regarding your plugin.
When a user created a group, can this group take a course simultaneously? If so, can the leader of the group see the progress of the users?
I’ve installed this plugin with the idea to assign multiple modules to a group, as would be the desired behaviour. The other topic about this was closed without further reply but I would also like to express my disappointment. My project is stuck on this feature, any workarounds?
]]>I did one minor enhancement. How to request for contribution to submit SVN changes?
]]>Updated to the latest learndash and wordpress. Now when viewing the course tab on the profile it just lists the courses title twice with no other information.
]]>When updating course data via Quick Edit, the link between course and it’s group is broken.
## Description
When creating a course, it’s often the case that a BuddyPress group is attached to it. This is normally done by editing the course in the WordPress post edit view which is the default way WordPress posts are edited.
When updating the course this way, the group attachment works fine. You can attach a group to the course and remove it without problem.
Things change when editing the course data (eg. course title) via the Quick Edit action by clicking the Quick Edit link, under the course title in the table of courses.
After saving the changes the course-group attachment is broken ie. there is no longer a link between the course and it’s previously attached group.
This is a bug because quick editing is quietly separates the course from it’s group and there’s no reason for it.
## Expected Behavior
When the course data is edited via Quick Edit, nothing more is changed than the actual data that I’ve changed. Certainly not the link between course and group.
## Actual Behavior
When the course data is edited via Quick Edit, in addition to the changes made by me, the link between course and group is broken.
## Possible Fix
Right now the bug seems to happen in bp_learndash_save_postdata()
when $_POST['bp_course_group']
is not set.
Maybe you could add an input to the regular post edit view which would also have to be checked.
Eg. if(isset($_POST['input_from_post_edit_view']))
## Steps to Reproduce
1. Create a course and attach a group to it
2. Go to the course list view
3. Click the Quick Edit link under the course title
4. Edit the course title
5. Save changes
6. Now the course is not attached to the group anymore
## My Environment
* Plugin version used: 1.2.5
* BuddyPress version used: 4.4.0
* Learndash version used: 2.5.8.1
* WordPress version used: 5.2.2
* PHP version used: 7.3.4