Escape Creative
Forum Replies Created
-
You’re welcome, @devcri. If you like the plugin & support I have provided, I’d appreciate a quick review. Just a quick note to let people know what you think about the upgraded design and the support I provide.
No worries if you’re super-busy. Just thought I’d ask 🙂.
@devcri — I just tested this out, and I’m seeing a different behavior. I am also testing on WordPress 5.0.3 and LearnDash 2.6.4.
Even when our plugin is disabled, the
<div class="ld-video">is still disappearing after the lesson is marked complete. This behavior is not being caused by our plugin.You are correct that it is this
<div>that is producing the responsive, properly-sized video initially. But the only reason it’s doing that is because of our plugin. If you are not using our plugin, the first time you view a video using video progression (even when it has NOT been marked complete yet), it will be sized poorly.The only way to modify the CSS so that the video is displayed responsively is to use the
<div class="ld-video">. That’s the only element and/or class name that LearnDash provides for anyone to be able to apply any CSS.Since they take it away after the lesson is marked complete, there is no longer anything we can do to manipulate the size.
If you still think it’s our plugin that is stripping that div, please email us at [email protected] with access to the lesson, and we will investigate further.
As for the learndash.css.map console error… that file should not be loaded on the page. I’m not sure why you’re seeing that error and I’m not, but it should be gone in our next release. It has to do with a new way we are processing our CSS file, but we’ll be removing the line that references this file in future versions, so you shouldn’t have to worry about it.
I do appreciate you bringing it up, though.
Hi @devcri,
I really appreciate all the details you have provided. It’s a huge help, so thank you!
This is interesting because our plugin should not be modifying any HTML code. We do apply some CSS styles to the
.ld-videodiv to make it responsive (because we found that several users were having issues with video sizing using the default LearnDash implementation). But our plugin should not be stripping any HTML.I’m investigating this now to see what might be the culprit.
Also, thanks for the heads up on the JS console error. I’ll also be looking into that, although I don’t suspect it’s the source of this particular issue. But still something I want to address, for sure.
I’ll get back with you soon.
Forum: Plugins
In reply to: [Design Upgrade for LearnDash] Pre-sales questionHi cptsilvertooth,
Thanks for your question.
It’s hard to say if our Pro version will do exactly what you’re looking for out-of-the-box. But it sounds like it will do some, and through the support we provide, we do offer small CSS snippets to do some of the things that the plugin doesn’t provide in the Customizer (fonts being a big one).
The videos on our sales page go through most of the options available. If you haven’t already, I encourage you to watch them if you want a more full picture of what the pro version can do.
If you purchase Pro, I’d be happy to provide you some custom CSS to change fonts only in certain places, or only on LearnDash elements. And some background & text color options are available in the Customizer, but anything that isn’t, again, I can provide you some CSS for those.
Worst case, if it doesn’t work out, I’m happy to refund you.
Just holler if you have any further questions,
DaveForum: Plugins
In reply to: [Design Upgrade for LearnDash] Ribbon effect has disappeared againThis was resolved via email, but there was a small piece of code that was added to my initial response in order to bring the ribbons back. Please use this CSS code below:
/* Add the ribbons back */ div[id^="ld-course-list-content"] .ld-course-list-items.row .ld_course_grid, div[id^="ld-course-list-content"] .ld_course_grid .thumbnail { overflow: visible; } div[id^="ld-course-list-content"] .thumbnail.course .ld_course_grid_price { top: 10px; left: -8px; border-radius: 0; } div[id^="ld-course-list-content"] .thumbnail.course .ld_course_grid_price:before { display: block; border: 4px solid transparent; border-top: 4px solid #348c34; border-right: 4px solid #348c34; content: ""; position: absolute; left: 0; bottom: -8px; } div[id^="ld-course-list-content"] .ld-course-list-items .ld_course_grid { border-radius: 0; }- This reply was modified 7 years, 8 months ago by Escape Creative. Reason: added more specificity to override some theme/plugin styles
Forum: Plugins
In reply to: [Design Upgrade for LearnDash] Design ‘Downgrade’ at one placeA small update is needed to the code above to get the ribbons back. Please use this full code instead:
/* Add the ribbons back */ .ld-course-list-items.row .ld_course_grid, .ld_course_grid .thumbnail { overflow: visible; } .thumbnail.course .ld_course_grid_price { top: 10px; left: -8px; border-radius: 0; } .thumbnail.course .ld_course_grid_price:before { display: block; border: 4px solid transparent; border-top: 4px solid #348c34; border-right: 4px solid #348c34; content: ""; position: absolute; left: 0; bottom: -8px; } .ld-course-list-items .ld_course_grid { border-radius: 0; }Forum: Plugins
In reply to: [Design Upgrade for LearnDash] Ribbon effect has disappeared againWould you be willing to create a login for me? I think I know what’s happening but it’s hard to say for sure without seeing the code.
You can send an email to [email protected].
Thanks.
Forum: Plugins
In reply to: [Design Upgrade for LearnDash] Ribbon effect has disappeared againHi @t2m,
So I took a look at that page and the HTML code for the ribbons is not present. That’s why the CSS I provided previously is not working.
This screenshot illustrates what I mean:
https://www.dropbox.com/s/fapud7zhdb8bo81/learndash-course-grid-ribbon-html-not-present.jpg?dl=0That
<div>should have something in it, but it’s blank.Did you change any settings related to who has access to the course? Or install any membership plugins that might have changed course access? There’s something that is preventing the ribbon code from being displayed.
Forum: Reviews
In reply to: [Design Upgrade for LearnDash] Simple. Very effective. Best Support.Short and to the point! Thanks Yanur.
Please let us know if you have any questions about the Pro version before purchasing.
👍 — Just let me know if you need help with anything else.
P.S. I love the design of your course page 😍. Nicely done!
And if you should feel so inclined, I’d love it if you could leave a quick review. I would really appreciate that.
- This reply was modified 7 years, 9 months ago by Escape Creative.
OK, I see what’s causing this. My plugin uses a 5% width on those numbers, and leaves 95% for the rest of the content in the table. However, for double-digit numbers in your theme, 5% is not enough.
You can increase the width to 8%, and then adjust the remaining content to 92%, and that should fix your issue. I’ll consider making this a permanent change in a future update to the plugin (after some testing with different themes), but this code can be added to a child theme or the Additional CSS area of the Customizer to fix the issue.
#lessons_list .list-count, #quiz_list .list-count { width: 8%; } /* This fixes the period overlapping the number */ #lessons_list .list-count:after { margin: 0; } /* Adjust the remaining content to 92% */ #lessons_list>div h4, #course_list>div h4, #quiz_list>div h4, #learndash_lesson_topics_list ul>li>span.topic_item { width: 92%; }If you find that you need more than 8%, just adjust the percentages accordingly.
Please let me know if that fixes the issue, or if you need any help getting it implemented.
Thanks!
Hi Yanur — Just wanted you to know I received this, and will be looking at it today. Thanks for providing a link to your site. That’s very helpful.
I’ll be in touch soon,
DaveForum: Reviews
In reply to: [Design Upgrade for LearnDash] Awesome plugin and serviceThanks Sam!
Just for anyone else who might be reading this, Sam has the Pro version which does come with over 80 options to design your LearnDash courses. This free version just cleans up all the default styles (but doesn’t have any options).
- This reply was modified 7 years, 9 months ago by Escape Creative. Reason: clarifying that Sam has the Pro version
Forum: Reviews
In reply to: [Design Upgrade for LearnDash] Totally worth it!Wow, thanks Valerie! So glad you’re enjoying the plugin, and we’re happy to help 😀.
Forum: Reviews
In reply to: [Design Upgrade for LearnDash] The number 1 plugin for LearnDashThanks Ryk! I appreciate all of your support, and your feedback. You’ve brought some things to my attention that I will be using to improve the plugin in the future.