Renaming “FREE” label in course prices

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';
}