Now, that we've established that you're not able to have labels shown in my Entries" tab, when having values...
What do you recommend for me to do?
Thank you!
Daniel
Now, that we've established that you're not able to have labels shown in my Entries" tab, when having values...
What do you recommend for me to do?
Thank you!
Daniel
There's gotta be a better way...
You could manage all the data using exports of the entries under Forms -> Import/Export -> Export Entries. Then you could manipulate the data as needed in Excel or another spreadsheet application.
Would I be able to create some sort of hook where before the actual form is created in "Entries" -- the parameter or hook would basically say to include the labels and not values?
Thank you! :)
Daniel
Would I be able to create some sort of hook where before the actual form is created in "Entries" -- the parameter or hook would basically say to include the labels and not values?
Thank you! :)
Daniel
You could use http://www.gravityhelp.com/documentation/page/Gform_pre_submission to change the values of fields before they are saved to the database. You would have to manually create the PHP code to grab the labels and store them as the values.
I actually want it so that it grabs the values and stores them as values.
The link you sent me is helpful, but I'd like to know the "code - name" for to store labels and not values.
Thank you! :)
Daniel
Do you see what I mean?
Thank you!
I'd like to do this on my own and not hire a programmer (as I feel a task like this is pretty doable for me).
Basically the link that you sent me too - briefly explained a certain example:
1 <?php
2
3 add_action("gform_pre_submission", "pre_submission_handler");
4 function pre_submission_handler($form){
5 $_POST["input_14"] = "new value for field 14";
6 }
7 ?>
I'd like to use computer code to basically say "Grab labels and store them as labels" ...instead of storing them as values.
I am sure there is a simple "computer term"...
...just like this example proposes "new value for field 14"
Thank you!
Daniel
Do you see what I am saying?
Anyone?
....
I really think with the countless customizations you want, you should hire a developer to work with you to extend what Gravity Forms does. Gravity Forms is working as expected, but you want more. We are limited on what we can do regarding custom code.