Forum Replies Created
- AuthorPosts
brabox
ParticipantThank you Ally,
That worked!
brabox
ParticipantHello Ally,
For some reason, upon testing the website today with the Debug on, everything worked…not sure what changed (as only i work on the site).
To answer the first question, Yes, everything was working fine before adding the NEW quform.
I reverted the debug back (no active debug in wpconfig) and everything seemed to work.
As i am still testing and importing the old quforms to the 2.0 one, i haven’t tried the setup on my LIVE website.
Not sure i should create another ticket but for me to actually test this on the Live website i need to get the same layout and CSS as i had with previous 2.0.
As you can see on the 2 images attached, the NEW is quform 2.0 and OLD is the old quform. I had added a black down arrow as the image and also shortened the width. On the new form i can seem to find the CSS (class) that allows me to do that.Link to old:http://dev.bringercustomsbroker.com/es/sobre-nosotros/ (click on blue button on the right of the menu)
Link to new: http://dev.bringercustomsbroker.com/ (same button, click)The class i had for the old quform was:
.iphorm-uniform-theme-default div.selector.hover,
.iphorm-uniform-theme-default div.selector.focus,
.iphorm-uniform-theme-default div.selector.hover.active,
.iphorm-uniform-theme-default div.selector.focus.active {
background-image: url("http://www.bringercustomsbroker.com/wp-content/uploads/2015/04/arrow-down-custom.png") !important;
background-position: right center !important;
background-repeat: no-repeat;
overflow: hidden;
}
.iphorm-uniform-theme-default .iphorm-form-9 div.selector,
.iphorm-uniform-theme-default .iphorm-form-9 div.selector span,
.iphorm-uniform-theme-default .iphorm-form-9 div.checker span {
background-image: url("http://www.bringercustomsbroker.com/wp-content/uploads/2015/04/arrow-down-custom.png") !important;
background-position: right center !important;
background-repeat: no-repeat;
overflow: hidden;
}
Attachments:
You must be logged in to view attached files.brabox
ParticipantHello Ally,
Yes, i believe it was something to do with iframe.I will try that code above. Thank you!
Marco
brabox
ParticipantThank you Ally! worked.
brabox
ParticipantHello Ally,
Do you still have plans on adding this Duplicate Group (and its elements inside the group) anytime soon?
Thanks!
brabox
ParticipantThank you so much Ally!
It worked!Problem solved.
brabox
ParticipantAlly,
I just logged in the back end and saw there was an update and read that you guys had fixed it!
(updated and all seems good now)
You guys are great and really attentive!
All the best!
Marco.
brabox
ParticipantThank you Ally,
I will try your code.
You guys have a great support team!.
=)
Marco
brabox
ParticipantBy the way. Just wanted to confirm if this code is correct. I added 2 more quforms to the original code you gave me.
function my_save_form_values($form)
{
$_SESSION['quform-13']['quform-14']['quform-15'] = $form->getValues();
}
add_action('iphorm_post_process_13', 'my_save_form_values');
add_action('iphorm_post_process_14', 'my_save_form_values');
add_action('iphorm_post_process_15', 'my_save_form_values');function my_get_form_values($form)
{
if (isset($_SESSION['quform-13']['quform-14']['quform-15']) && is_array($_SESSION['quform-13']['quform-14']['quform-15'])) {
$form->setValues($_SESSION['quform-13']['quform-14']['quform-15']);
}
}
add_action ('iphorm_pre_display_13', 'my_get_form_values');
add_action ('iphorm_pre_display_14', 'my_get_form_values');
add_action ('iphorm_pre_display_15', 'my_get_form_values');Thanks.
brabox
ParticipantThank you Ally,
I have tested and it worked now.
Not sure why the previous code didn’t work but here is what i was using.
<button class="resetbutton" onclick="jQuery(this).parents('.iphorm').resetForm(); jQuery.uniform.update();
jQuery(document).ready(function ($) {$('.iphorm_13_2').focus();});return false;"><span class="resetbuttontext">Limpar Formulário</span></button>Anyways, thank you again!
Marco
brabox
ParticipantHello Ally,
Thanks for the code. It did work but now for some reason the reset button does not reset the form.
brabox
ParticipantHello Ally,
Thanks for the quick response as always.
I removed the code and it worked (windows / Firefox) and i also added a reset button.
I have tested in some other machines and when I “return” back to the page it seems to reset.
Any ideas?
Thanks Marco.
brabox
ParticipantThank you Ally!
Worked perfectly!
Marco.
brabox
ParticipantHello Ally,
Just wanted to let you know i sent you the email yesterday, wanted to make sure you received it.
Thanks,
Marco
brabox
ParticipantThank you Ally,
works perfectly!.
- AuthorPosts