Forum Replies Created
- AuthorPosts
Joe Dostie
ParticipantHay MBaker,
What was your solution for multiple fields? I am looking to do the exact same thing you are doing. Any chance you could share the solution?
I have 1 single filed working, now I want to add a few more.
Thanks!
Joe Dostie
ParticipantOK, finally got it figured out….
For some reason this was related to “The Events Calendar PRO” Version 4.1.3 | By Modern Tribe, Inc.
Once that was disabled the “upgrade” worked fine. Not a clue why but cycling this other plug in made it work again.
Joe Dostie
ParticipantJust some further info….I also disabled my theme and used Twenty twelve. Same issue no matter what 🙁
Joe Dostie
ParticipantI have this same issue…
I have it on both my TEST and PRODUCTION site.
I have it with version 1.7.5 and 1.7.9
I have uninstalled and reinstalled
I have upgraded
I have uninstalled and installed 1.7.9 fresh
I have disabled all of my Plugins (only Quform left running)Happens in IE and Chrome
Still no luck 🙁
Any ideas?
Thanks,
Joe- This reply was modified 9 years ago by
Joe Dostie. Reason: add info
Attachments:
You must be logged in to view attached files.Joe Dostie
ParticipantThanks Ally,
Just as an FYI for anyone else using the Avada theme.
This was related to the theme and the first 3 solutions did not work and the 4th option seemed a little drastic as it said it might affect my entire site.
I contacted Avada and they had fixed it with the following CSS (added to my custom CSS)
#content .iphorm br {
display: none !important;
}#content .iphorm p, #content .iphorm .iphorm-element-spacer {
margin-bottom: 2px !important;
}
Thank you again for you continued support.Attachments:
You must be logged in to view attached files.March 12, 2015 at 2:17 pm in reply to: Getting an ARRAY of user Meta info and iphorm_element_value_? #14551Joe Dostie
ParticipantI cant thank you enough again Ally!
Your support and code are simply outstanding.
For some reason I am having the toughest time getting my head around these arrays but your code is definitely helping to clarify!
Thanks!
Joe Dostie
ParticipantThanks Jason,
That is exactly the type of info I was looking for. All the searching I did and never came across that.
Joe Dostie
ParticipantAllow a “test/dev” site to run with a valid license key.
I know you allow us to use an “unlicensed” version for development or testing but it would be nice to have the update functionality and not see that red notice at the top.
Also I always update my test environment first to make sure its going to be smooth and check for any conflicts.
I have to move my key back and forth for that.
Joe Dostie
ParticipantThe ability to “hide” a label of an element on a form.
Its important to label all the elements so you can understand whats going on with the form, but for esthetic reasons I sometimes will NOT label an element like my STATE selection as its obvious to a user.
The problem with not labeling is that when you try and select it as a variable to the custom database settings it shows up as a empty value.
I know I could do this with CSS but it would be nice to have it as a check box option with the element.
Attachments:
You must be logged in to view attached files.Joe Dostie
ParticipantIt would be nice if the “Save Another Form Value” button would scroll in the database tab in the “what to save” section just like the element selector does.
When adding many database fields its tedious to scroll back up to the top every time to keep adding new fields.
While I am on it, it would also be nice to have some sort of an import ability instead of having to add each field manually. I don’t think it would need to import the data type and all the settings. Just an ability so you don’t have to type everything.
Attachments:
You must be logged in to view attached files.Joe Dostie
ParticipantSo I was hoping to see this in the 1.5 version but I guess not. Is it better to assume that it will probably be out in thru 2.0 version?
Looking forward to using the product more, so far it has been awesome and your support has been simply fantastic!
Thanks Ally
Joe Dostie
ParticipantAwesome! As usual, you got it! 🙂
Now I have a NEW issue that appears to be introduced by this fix…
I had followed the topic of Date default value today and everything works perfect.
When I go to my Adoption page the date is per-populated with today’s date.
The weird part is, now if I go FROM my adoption link, the pet name is populated but the date function no longer seems to work.
So if I go to here:.
http://69.195.124.253/~ctwocndo/adoptions/adoption-application/ – The date is populated and all is good.But if I start from here first:
http://69.195.124.253/~ctwocndo/adoptions/adoption2/
Then select any pet
Then select the “Adopt Me” button on the top right
You will be redirected to the Adoption application but ONLY the pet name is populated. The date is no longer populated.I have a few guesses as to why:
1.) The variable (PetName) at the end of the URL are interfering with the DATE function
2.) The order of the action and function
3.) The date function needs to be integrated into the PetName function.
function mytheme_date_today()
{
$now = current_time('timestamp');return array(
'day' => date('j', $now),
'month' => date('n', $now),
'year' => date('Y', $now)
);
}
add_filter('iphorm_element_value_today', 'mytheme_date_today');
Then there is a bunch of code in between here….
function my_pre_display($form)
{
if (isset($_GET['petname']))
{
$form->setValues(array('iphorm_2_1' => $_GET['petname']));
}
}
add_action('iphorm_pre_display_2', 'my_pre_display');
add_filter('iphorm_element_value_today', 'mytheme_date_today');
Joe Dostie
ParticipantHello, would it be possible to share this solution?
I am inspecting the button element on the page (via firebug) and see all the CSS.
My guess is that it would probably be easier to change the Quforms button elements class to be the same as my themes button class (Avada) but I am not sure how that will impact Quforms.
Looks like I would also need to put a <span> on the text.
http://69.195.124.253/~ctwocndo/
Looking to make the “Subscribe” the same at the “Learn More”
Joe Dostie
ParticipantHi,
I have a referring URL with a value in it but its a single item so it looks like this:
http://69.195.124.253/~ctwocndo/adoptions/adoption-application/?petname=A..%20%20Carmen
I am trying to take the petname and pre-populate it into an application that the user will fill out.
I tried referring to this code but it dosent seem to work for me, this is what I have.
function my_pre_display($form)
{
if (isset($_GET['petname']))
{
$form->setValues ('iphorm_2_1' => 'petname');
}
}
add_action('iphorm_pre_display_1', 'my_pre_display');
Any help is appreciated!
Joe Dostie
ParticipantThis is fantastic news…exactly what I was just looking for!
Any insight as to when the next version is slated to be released?
Looking forward to it!
- This reply was modified 9 years ago by
- AuthorPosts