adriancedar
Forum Replies Created
-
And this is the problem area of the email I have received (in HTML)
<p>New Post on Screen the World: <a href=3D"http://https://screentheworld.o= rg/2022/01/31/art-one-on-one-lessons-2/">Art One-on-One Lessons</a><br /> By: Adrian<br />you can see the href=3D”http://https:// ” and then continues
- This reply was modified 4 years, 3 months ago by adriancedar.
This is what’s under the ‘text’ tab of the template editor.
Hi {{NAME}}, New Post on Screen the World: {{POSTLINK-WITHTITLE}} By: {{POSTAUTHOR}} {{POSTIMAGE}} {{POSTEXCERPT}} All the best! From the robots at Screen the World : ) <a href="https://screentheworld.org">https://screentheworld.org</a> You received this email because in the past you have provided us your email address: {{EMAIL}} to receive notifications when new updates are posted.Forum: Plugins
In reply to: [CLUEVO LMS, E-Learning Platform] Student self tracking on modulesHi Elias,
Thanks for the reply.
I do get access to that progress as an instructor in the back end. However I am wondering if there is any way now, or in a future release, to show that progress to students in the front end?
Best,
AdrianUnder the ‘Pages’ tab of the ‘User Role Editor’ plugin, allow
edit_others_pages
edit_published_pagesThen it should all work!
Forum: Plugins
In reply to: [CLUEVO LMS, E-Learning Platform] Display Singular Chapter as a popupI added the following javascript below the cluevo chapter shortcode for the desired effect.
<script>
var chapter = 2; // keep module
var x = document.getElementsByClassName(“cluevo-content”);for (var i = 0; i < x.length; i++) {
if (i != chapter -1) {
x[i].style.display = “none”;
}
}
</script>Forum: Plugins
In reply to: [CLUEVO LMS, E-Learning Platform] Display Singular Chapter as a popupTo clarify my question.
I want the lightbox method used when I use shortcode to display module content. It seems like shortcode of a module content only allows for embedd with iframe.