David
My feedback
-
517 votes57 comments · WooCommerce » Extension - WooCommerce Memberships · Flag idea as inappropriate… · Admin →
David supported this idea ·
-
3 votes
Thanks David, I’ve passed this on to the developer :)
An error occurred while saving the comment An error occurred while saving the comment David commented
Thanks, Dan.
David shared this idea ·
-
549 votes44 comments · WooCommerce » Extension - WooCommerce Bookings · Flag idea as inappropriate… · Admin →
David supported this idea ·
An error occurred while saving the comment David commented
I've needed something like this since I started using WC nearly 4 years ago... We're so close!
-
4 votes
An error occurred while saving the comment David commented
Agreed. There would also have to be a product type of "unique" in addition to "virtual" and "downloadable"... This could allow for custom stock management settings for one-of-a-kind products, like displaying a "red dot" and "sold" on the product and archive pages, rather than the default "in stock" or "out of stock".
This seems like it would be pretty straight forward. I'm surprised there's no plugin already out there for this... I've looked, and come up with nothing.
-
30 votes
Sensei LMS Team responded
I like the idea, but how does it differ from course categories. Would appreciate some feedback on that :)
An error occurred while saving the comment David commented
Also, although a sequence of courses could be setup using prerequisites, the "paths" idea is really more about recommending a sequence courses, not strictly requiring one.
An error occurred while saving the comment David commented
Of course, this could be accomplished in a variety of ways... I just like the clarity of how study paths are presented on learnable.com. It would be easy if it was baked-in to Sensei, that's all.
An error occurred while saving the comment David commented
Dan, I think the main difference is that a study "path" isn't just a grouping (or category) of courses, but is rather a sequence. "Start with this, then move on to this, then move on to this..."
Some students are looking for more than just a selection of courses to take. They want guidance – recommendations for where to start, and where to go next.
An error occurred while saving the comment David commented
This is a great idea. There's a good example of it here:
https://learnable.com/pathsI'd love to see this.
I think I may have found a fix for this. With the plugin active, add the following code to functions.php:
// add custom post_types to bbpress topics for posts plugin
add_filter( 'bbppt_eligible_post_types', 'bbppt_add_post_types');
function bbppt_add_post_types ($content) {
array_push($content, 'lesson'); // add extra post_types here
return $content;
}
Then enable the "Use a bbPress forum topic for comments on this post." setting in the "Discussions" section in the backend of each lesson.
Also enable the "Copy post tags to new topic" setting.
Seems to work...