Last active
May 2, 2022 11:43
-
-
Save wbcomdev/4baa1f91a398b293c3d5cc023f05c3af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * Use below snippet to display no course text. | |
| */ | |
| function ld_dashboard_no_course_created_text_call( $fields ) { | |
| return 'Course Not Found !!!!'; | |
| } | |
| add_filter( 'ld_dashboard_no_course_created_text', 'ld_dashboard_no_course_created_text_call', 10, 1 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment