transfeo
Forum Replies Created
-
Same happens with smush pro version 3.12.5. It breaks LearnDash automatic course progression upon video completion.
Learndash 4.5.4.3 – Astra theme. Video progression does not work.
“Lesson Auto-Completion” enabled under the “After completing sub-steps. “Mark Complete Button” option disabled. But it does not matter, the video progression does not work.
Tried with YouTube and Vimeo. Disable all the other plugins with no effect. Someone else facing the same issue?
Forum: Plugins
In reply to: [WP Post to PDF Enhanced] Page images not included in pdfI discovered that transparent images do not appear. Your images need a color background, it seems…
Forum: Plugins
In reply to: [Q and A Focus Plus FAQ] Suggestion: Dynamic behaviourWell, I am using that, but is not working very well. When someone clicks a FAQ, it stops working. Any suggestions?
// HTML
< a id=”label” onclick=”changeDiv(‘close’,’open’);”>Open all</ a>
<div id=”close” style=”display: block;”>[qafp]</div>
<div id=”open” style=”display: none;”>[qafp collapsible=true]</div>// JS
function changeDiv(id1,id2) {
var e1 = document.getElementById(id1);
var e2 = document.getElementById(id2);
if (e1.style.display == ‘block’) {
e1.style.display = ‘none’;
e2.style.display = ‘block’;
document.getElementById(‘label’).innerHTML = ‘Close All’;
} else {
e1.style.display = ‘block’;
e2.style.display = ‘none’;
document.getElementById(‘label’).innerHTML = ‘Open All’;
}
}