Forum Replies Created
- AuthorPosts
- May 21, 2018 at 7:22 pm in reply to: Bugs happening after the latest WordPress 4.9.6 release. #25744
Harrison
ParticipantThanks Ally, the change you made did fix the issue. Are you testing it with WP 4.9.6? I ran numerous testings on different websites, themes, domains, browsers, computers etc… and none works after updating to 4.9.6.
Could you please update your demo (https://demo.quform.com/) to WordPress 4.9.6 and test on that installation? We will be able to also test it from our end.Thanks.
May 19, 2018 at 7:03 pm in reply to: Bugs happening after the latest WordPress 4.9.6 release. #25730Harrison
ParticipantI just sent you the login information so you can test it on a fresh install.
The code inspector shows an error in one of the plugin’s JS.
TypeError: undefined is not an object (evaluating 'window.tinymce.ui.FloatPanel.zIndex=100007') on WindowLoad (builder.all.min.js:1:189564) dispatch (load-scripts.php:3:12450) handle (load-scripts.php:3:9179)
Thanks in advance.May 19, 2018 at 6:37 pm in reply to: Bugs happening after the latest WordPress 4.9.6 release. #25729Harrison
ParticipantI just tried a clean WordPress install with only the QuForm installed and fresh twenty-seventeen and twenty-sixteen themes. No other plugins activated. It doesn’t work on three MACs using Safari, Chrome, and Firefox. Tried on Windows and it doesn’t work on MS Edge, Firefox and Chrome.
Again, there is nothing to conflict with besides the QuForm and WordPress 4.9.6. How is it possible this is just happening on my end?I’m going to email you the access to this fresh install.
Thanks.
Harrison
ParticipantNever mind, I got it working with the code below.
$mergeVars = array(
'NAME' => $form->getValue( 'quform_10_100' ),
'GROUPINGS' => array(
array( 'name' => 'Customer Type', 'groups' => $form->getValue( 'quform_10_102' ) ),
)
);
Harrison
ParticipantHi Ally,
Would you please share your solution here?
I’m also trying to connect the form with a MailChimp group. Name and email are parsing fine but I can’t get it to parse the group.Basically, I have a Quforn radio button with two options (E-commerce and Crowdfunding).
The group on MailChimp is “Customer type” using the dropdown with E-commerce and Crowdfunding options.Any help is really appreciated.
Thanks.
Harrison
ParticipantHi Ally,
Sorry to bother you again. Just a quick question. Is it possible to implement this code to include the select field? Adding the same result to the select dropdown when an option is clicked.Thanks.
Harrison
ParticipantHi Ally,
This is fantastic; it worked like a charm.
Thank you so much for taking the time to code a solution. Exceptional support!Best.
Harrison
ParticipantI found out there is the “label inside” option. Is there any way I can disable the function to hide the label after clicked, and instead, just reposition it on top. Something similar to this https://www.shopify.com/. I’m trying to force the label to be visible with css but it’s not working.
Any help is very much appreciated.Thanks.
April 17, 2018 at 6:27 pm in reply to: Custom Notification message, check if element is not empty #25058Harrison
ParticipantHi Ally,
Thanks for pointing me in the right direction. The custom notification email should solve my problem.Harrison
ParticipantOkay, I got it solved by adding a regex to allow only numbers and dashes.
/^[0-9-_]*$/
Harrison
ParticipantThanks for your reply and consideration in adding this feature in the future. That will be an awesome tool to customize the auto-replies to match the website/business brand.
Thanks again and looking forward to this addition.
Harrison
ParticipantFixed! It was related to a jquery conflict.
Thanks,
Harrison
ParticipantThanks for all the help!
Harrison
ParticipantI just found some hooks https://support.themecatcher.net/quform-wordpress/guides/hooks/iphorm_pre_validate not sure if that will do, but could anyone give me an example on what to add inside the hook? I’ve no clue on what the custom code will be.
function my_pre_validate($form)
{
// Custom code
}
add_action('iphorm_pre_validate', 'my_pre_validate');
Harrison
ParticipantThanks for your reply. Unfortunately even after removing the trim still doesn’t work. Same applies using Regex and some of the validator options. The only one I got working was the “length” which will do the job for me at this point.
I do think there is a bug with the plugin because I have tried using the quform alone and on many different installations and even different servers, but they do not work. Including the custom function as mentioned above.Thanks again for the quick support.
- AuthorPosts