
Would you like to add Learndash Courses List to WooCommerce Account Page? This free plugin in WordPress.org allows you to do that automatically with absolutely no other configuration. Just install and activate the plugin.
The new account tab “Courses” will appear which displays the Learndash courses just what the shortcode [ld_courses_list] would display.
The plugin has a filter you could utilize to add any Learndash shortcode. For example, to add a Learndash profile, you could add the following code snippet in your theme’s (preferably child theme’s) functions.php.
add_filter( 'wc_learndash_account_tab_content', static function() {
return '[ld_profile]';
});
Similarly, you can add any Learndash shortcodes by replacing [ld_profile]
. By the way, you can add any new account tab in WooCommerce account by using a little code snippet.
I hope you like the plugin!