How to Turn Off Automatic WordPress Core Updates 1. Access your wp-config.php file in order to add this snippet: define( ‘WP_AUTO_UPDATE_CORE’, false ); To access the file, you’ll need to either use FileZilla (or another File Transfer Protocol (FTP) solution) or the file manager in your web host’s cPanel. Once you have access, move to […]
LearnDash
LearnDash Course Shortcode
[ld_course_list orderby=”ID” order=”ASC” num=”50″ col=”4″ mycourses=”enrolled” course_category_name=”core-curriculum”] Change the course category.
LearnDash Course Registration imember360
In iMember360, you can go to EXTENSIONS, then LearnDash, and tell the plugin what page has the course grid, and it will enroll people on that page without making them refresh.
LearnDash iMember360 Code to Auto-Enroll Courses
As you know, LearnDash doesn’t offer a full range of action/filter hooks. The only way to trigger an automatic enrollment without going to the course page is with a “trick”, as follows. To manually trigger an auto-enrollment, place the following code on the first page your members see after login you to simulate a visit […]
LearnDash Lesson Complete Button Advance to Next Lesson Automatically
Finally done with the case where a lesson has topics. add_filter( ‘learndash_completion_redirect’, function( $link, $post_id ) { // We only want to do this for Lessons (sfwd-lessons). if ( get_post_type( $post_id ) == ‘sfwd-lessons’ ) { $course_id = learndash_get_course_id( $post_id ); $course_steps_object = LDLMS_Factory_Post::course_steps( $course_id ); $course_steps_object->load_steps(); $course_steps_l = $course_steps_object->get_steps( ‘l’ ); $current_step_idx = array_search( […]
Redeem Uncanny LearnDash GROUP Codes
Place this shortcode on the page you want a form to appear to be able to redeem shorter group codes: Uncanny groups codes have to be redeemed here: [uo_groups_registration_form]
LearnDash Course Management iMember360
All of your courses are set to the LearnDash Open course type. That means that any logged in user is enrolled into the course. So every user is enrolled into every course. iMember360 can’t override that default LearnDash behaviour. If you want to control enrolment using iMember360 and Infusionsoft tags you need to set the […]
iMember360 Login Form Redirects to WP-Login.php when LearnDash is Installed
They are hooking in to a WordPress filter to add that code. You could remove their filter with code within your functions.php however we do not know what effect that may have on other functions: remove_filter( ‘login_form_top’, ‘learndash_add_login_field_top’ ); You would need to check with them whether you can use remove filter if you are […]
