I saw that WPLMS has released an update. I always download the folder from envato. And install it in the themes folder on sftp. But I use a childtheme, does updating the theme this way even work? Is there something else I should do?
Also.... The order of the courses is all messed up. I now see the last 12 courses XYZ. And when I click LOAD MORE it adds the courses UVW above the already visible courses.
SO my second questions: Is it possible to show all courses at once? (I think that's still not possible, right?) Or can I at least show the courses ABC and when I LOAD MORE I see 12 new DEF courses underneath the already visible courses. It would make way more sense.
1 . yes you can replace theme folder with sftp .it will work and will not affect anything . 2. Im sorry loading custom number of courses is not available right now but yes provision for this has to be added : https://trello.com/c/KXvMQgvJ
Hello,
I saw that WPLMS has released an update. I always download the folder from envato. And install it in the themes folder on sftp. But I use a childtheme, does updating the theme this way even work? Is there something else I should do?
Also.... The order of the courses is all messed up. I now see the last 12 courses XYZ. And when I click LOAD MORE it adds the courses UVW above the already visible courses.
SO my second questions: Is it possible to show all courses at once? (I think that's still not possible, right?) Or can I at least show the courses ABC and when I LOAD MORE I see 12 new DEF courses underneath the already visible courses. It would make way more sense.
Thanks,
Gijs
1 . yes you can replace theme folder with sftp .it will work and will not affect anything .
2. Im sorry loading custom number of courses is not available right now but yes provision for this has to be added : https://trello.com/c/KXvMQgvJ
I thought it would be added in previous update, because a bug was causing these options not to work...
Gijs
will be adding provision for this in upcoming update .
What does that sentence mean? Provision is like stock... What do you mean? Can you be a bit more specific?
Thanks
There will be no setting to update the number of items but can be customized by code via this code :
add this code in your wplms-customizer.php file in wplms customizer plugin :
add_filter('wplms_course_settings',function($ok){
$ok['courses_per_page'] = 40;
return $ok;
});
Wow!!! Perfect! :)
Thanks