skip to Main Content

Can I purchase a WPLMS course on WordPress?

I am using WPLMS theme for a course management website. I am using following code to display a button in the details page. add_filter('wplms_before_course_description','custom_add_second_button'); function custom_add_second_button($course_details){ $custom_link = get_post_meta(get_the_ID(),'Custom_button_link',true); if(isset($custom_link)){ echo '<a class="full button" href="'.$custom_link.'"><span class="vicon vicon-shopping-cart"></span> Buy This Course</a>';…

VIEW QUESTION
Back To Top
Search