russellpabon
Forum Replies Created
-
Forum: Plugins
In reply to: [GuiForm] Submit not working (new form on 1.7.1)Hi, one of your plugin or the theme is appending jQuery and jQuery migrate in the GuiForm I frame which shouldn’t be. Try to disable the other plugin one at a time to see which one is causing the issue.
Please update to version 1.7.1 to resolve this issues.
Forum: Plugins
In reply to: [GuiForm] How can I Put Min CherecterMinimum and maximum length validation is only supported in Pro version.
Forum: Plugins
In reply to: [GuiForm] maintain filename for download – not the hash value in filenameI fixed this issues in version 1.7.1, please update your plugin. Thanks!
Forum: Plugins
In reply to: [GuiForm] Blank page in Plugin Dashboard when trying to add new formPlease update to version 1.7.1 to resolve this issues.
Forum: Plugins
In reply to: [GuiForm] email recipient query.Conditional email notification is only available in GuiForm Pro.
Forum: Plugins
In reply to: [GuiForm] Tracking Referring URLsHi,
You can now use GuiForm Pro 1.2.0 to add referring URL by adding a default value ($_SERVER[{HTTP_REFERER}]) in the field. I also fixed the CSS conflict.
Forum: Plugins
In reply to: [GuiForm] Documentation & some tipsHi,
In the root directory of GuiForm rename the file
functions-sample.php
to
functions.php
.
You can create your own class or modify the existing example and use WordPress hookadd_action
and
dd_filter
.
This hook accept two parameter and return none. First parameter are the entry value and the second is the form object property.
function saveEntry($data, $form){ //Your code here! } add_action('guiform_action_{Form ID}_save_entry', 'saveEntry', 10, 2); add_action('guiform_action_1_save_entry', 'saveEntry', 10, 2);
The current version doesn’t have hooks for custom validation. If you want to add validation for file size you need to edit the
classes/GuiForm/Module/Validator.php
.
Find this code:
if($value['type'] == 'f_file'){ $validators['file'] = array('extension' => $value['validation']['extension']['type'], 'type' => $value['validation']['extension']['mime'], 'message' => $value['validation']['extension']['text']); }
And change this to:
if($value['type'] == 'f_file'){ $validators['file'] = array('extension' => $value['validation']['extension']['type'], 'type' => $value['validation']['extension']['mime'], 'maxSize' => 5*1024*1024,// 5 MB 'message' => $value['validation']['extension']['text']); }
Documentation and video tutorial will be release soon.
Forum: Plugins
In reply to: [GuiForm] No entryCheck this link here. Remove all this divider temporally.
Forum: Plugins
In reply to: [GuiForm] submit button not workingHi,
You need to create a new form and replace the old one. The newer version doesn’t have a backward compatibility.
Forum: Plugins
In reply to: [GuiForm] No entryHi,
I am glad that you valued my work. To fix the problem, remove all divider for now and save. I will add the fix in the next update so that you can add the divider tool.
Thanks
Forum: Plugins
In reply to: [GuiForm] Strict Standards error messagesIn your php.ini file your current settings most likely include the line “error_reporting = E_ALL | E_STRICT”, which means that the system is reporting errors as plain notices. The E_STRICT flag is used by developers; it is overkill for regular users and a bad practice for live sites.
Note: Strict Standards warnings are not errors; these are messages for developers and such messages should not be enabled on a production site.
How to fix:
In your wp-config.php add the following code below.ini_set('display_errors', '0'); # don't show any errors... error_reporting(E_ALL | E_STRICT); # ...but do log them define('WP_DEBUG', false); #....WordPress debugging mode.
Please check also our GuiForm Pro Demo.
Forum: Plugins
In reply to: [GuiForm] updateSend the image to my email address below.
Forum: Plugins
In reply to: [GuiForm] updateI need to see the error otherwise I can’t resolve this issues. I’ve tested this plugin on several servers and I don’t see the same errors that you had. I can fix this if you will allow me to have access only for the GuiForm pages.
Forum: Plugins
In reply to: [GuiForm] updateNow that is really weird if you don’t see the form builder. What version of WordPress are you using?