tameroski
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Cannot add signature in formOk, CF7 did a major UI update and it looks like my plugin is not yet compatible with it …
Give me some time and i’ll fix it. You can roll back to CF7 v4.1.X if you want it to work right now.
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Cannot add signature in formHello,
This popup doesnt look like the standard CF7 admin window. What version of WordPress are you using ?
Do you have error logs when the popup show up ?Thanks
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning Wheeltameroski at gmail ??
ThanksForum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning WheelCan you please try to enable debugging on your site ?
Just temporary set the WP_DEBUG to true in your wp-config.php to see if you got some warnings :
define('WP_DEBUG', true);
You can also set those variables if you don’t want logs to be shown on the site, and then grab the debug.log at the root of your wp-content directory :
define('WP_DEBUG_LOG', true); define('WP_DEBUG_DISPLAY', false);
Thanks
Edit : Better to try with release 2.2, or with both versions if possible …
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning WheelUnfortunately, it’s really hard to tell without logs.
I was thinking that creating the directory manually with the good rights should do the trick, but it doesnt seams to work … Note that in the development release, i renamed it “wpcf7_signatures”.What’s your server configuration (apache, IIS, … / Win, Unix, …) ? I’ll try to find similar cases.
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning WheelThat’s definitely a folder creation issue, which is weird as it’s working fine for CF7 …
Can you try with the development version (available here) and tell me if it’s better? I tried something different for file storage.
Thanks
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning WheelI’m not able to reproduce that bug ??
Please check a few things for me :
– There’s a /signatures directory created and with write permissions in the wp-content/uploads directory of your WP installation
– look at your server error logs to see if there is something wrong happening when you submit the form (there must be)Thanks
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning Wheelhi wfastenow,
Any error log that could help me fix this ?
What’s the configuration of your form (field types/names, mandatories, etc.) ?And i’ve figured it out about the form submission when field is cleared, i’ll fix it in the next release.
Thanks
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Multiple Signature Does not WorkNo reply -> closed
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning Wheelv2.2 released and include this fix.
Thank you for finding this bug out !Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning WheelGood news !
For the border : just get the id of the canvas element of the signature field (should look like “#wpcf7_FIELDNAME_signature”) and add it a border. Do that in your theme’s css, or it will be overridden in the next plugin update.
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning WheelI see .. That’s some bad coding of my own …
Unfortunately, i won’t be able to take much care of it for the next days.Do you have the possibility to edit the signature.php file ?
If so try to replace that line :
if (strrpos($data, “data:image/png;base64”, -strlen($data)) !== FALSE){
by this one :
if (is_string($data) && strrpos($data, “data:image/png;base64”, -strlen($data)) !== FALSE){That should do the trick (i hope).
Anyway, i’ll take a look at that in a couple of days and will fix it.
Thanks
Forum: Plugins
In reply to: [Contact Form 7 Signature Addon] Spinning WheelThat’s a strange behavior …
The spinning wheel is managed by CF7, and i don’t see any reason for my plugin to prevent it from submitting the form.
Does it work when disabling my plugin ?
Do you have error logs in the javascript console or web server ?
That’s the first things i’d check to try identifying the problemForum: Reviews
In reply to: [Contact Form 7 Signature Addon] Multiple Signature Does not WorkThis should be fixed in 2.1. Please update and let me know.
Please update the plugin to the latest version first (2.1)
Then verify a few things :
1) “Use HTML Content Type” is checked in your mail configuration (see. part 6 of https://contactform7.com/admin-screen/)
2) The code for your signature field in the Message body (part 6 also) is :
<img src="[signature-590]"/>
and not simply
[signature-590]
(of course replace ‘signature-590’ by your own field code)
And everything should be fine.