scottzozer
Forum Replies Created
-
@willy70
UPDATE 2 – I used https://ezgif.com/optimize to convert my shortened video into a GIF, did a little compression (my video already had a black 50% transparent screen over it – so CTA is easier to see) and uploaded as the backup image. You have to play around with it a bit, make sure NOT to let wordpress crop the photo or it wont play on mobile.
Let me know if this helps?@willy70, have you had any luck? I am working with the Hestia theme and want to do something similar. My goal is to load one video on desktop and a different more mobile friendly version for mobile. Hoping to start following this trail to see where it leads!
UPDATE – Actually playing around with things, I think I am going to transition to converting my video to a GIF instead of a video.
- This reply was modified 8 months, 3 weeks ago by scottzozer.
Forum: Plugins
In reply to: [AddToAny Share Buttons] Any way to stop a2a_label generationCurrently solving by adding a style override in the additional CSS settings
<style> .a2a_label { width: 0px !important; } </style>
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Validation Required IssuesCurrently what I am doing to work around this issue is the following
var doublecheckblocker = 0; document.addEventListener( 'wpcf7invalid', function( event ) { var inputs = event.detail.inputs; var validation_errors = []; if(inputs.length > 0) { for (var i = 0; i < inputs.length; i++) { if ('participant-signature' != inputs[i].name && inputs[i].value == "") { validation_errors.push(inputs[i].name); } if ('participant-signature' == inputs[i].name && inputs[i].value == "") { if (validation_errors.length < 1 && doublecheckblocker <= 1) { ++doublecheckblocker; $('#consent-form').submit(); break; } if(doublecheckblocker >= 2){ doublecheckblocker = 0; } } } } }, false );
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Validation Required IssuesI am thinking its a timing thing. It seems that the form checks validation quicker than your plugin moves the signature into the hidden field thus failing the validation of required field.
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Validation Required IssuesIt looks like the signature base64 isnt added to the hidden field until after I hit submit the first time. Is there a control button I am missing that allows a user to save their signature or similar? right now it only shows a
clear
button.I have also removed all other CF7 plugins. Is there a known list of plugins that do not play well with your plugin?
- This reply was modified 3 years, 10 months ago by scottzozer.
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Not working when requiredDid you ever get any resolve to this issue? I am having the same issue.