Rename the "FREE" label in Course Pricing

1. Go to WP Admin -> Plugins -> Editor -> Wplms customizer -> customizer_class.php
2. Add the following line in _construct function :

PHP Code:

 

add_filter('wplms_free_course_price',array($this,'wplms_free_course_price'));  

 

3. ADd the following function in class:

PHP Code:

 

function wplms_free_course_price($free){
return 'Livre';
}