Hi @tamsu,
Awesome to hear you’re loving it, and we’d love for you to give the premium version a go! Let’s see what we can sort out with the items you’ve mentioned here. π
It’s definitely possible to alter those elements in various ways. The Find Out More button could be hidden with CSS like so:
.student-dashboard-wrapper .featured-course-link { display: none; }
That can be added to your theme’s style.css file (best to use a child theme in this case) or through a plugin like so:
http://ww.wp.xz.cn/plugins/imporved-simpler-css/
However, if you hide that, users wouldn’t be able to get to the course very easily. Is there a reason you wanted to do that?
The Price button wouldn’t only be available if you’ve setup the payment features. Did you maybe want to hide the button if the course is free?
The Course Details could be hidden like so:
.student-dashboard-wrapper .course-summary { display: none;}
If you just want to change the terms that are used, you could create a custom language file and provide the customized terms by basically translating them.
You’ll find info about translating here:
http://codex.ww.wp.xz.cn/Translating_WordPress
And in this case, you’d basically just configure WordPress for a specific language, create a custom translation for the plugin using Poedit (or similar), then copy that translation to the language folder.
Or alternatively, you could use a plugin like this to automatically find-replace text strings:
https://ww.wp.xz.cn/plugins/real-time-find-and-replace/
It does require some server resources so that might not be optimal for you, but it’s a very easy solution.
How does that all work for ya? π
Cheers,
David