Qualtrics and Saving Custom Form Field Responses - qualtrics

I have created a custom form in Qualtrics using the html <form> tag. I have not been able to get any of the text entered into the custom fields to save and display with the other data.
I know it is because I need the correct value for the <form> action attribute. I've searched through the Element Inspector trying to find the .php that is attached to a default text entry field but cannot find one.
Does anyone know how to find out what the .php the rest of the Qualtrics survey is using is or how to go about collecting the entries from a custom text field?

You can't add your own input fields. If you want a text entry field or fields, add a text entry question. If you want to change the look/formatting of the questions use JavaScript or CSS styles to change them.
A second, less desirable option is to use JavaScript event listeners to save your custom fields to embedded data fields when they are updated using setEmbeddedData.

Related

How to change the case of submitted value of dropdown in Formidable Wordpress Plugin?

How to change the case of dropdown values in Formidable Wordpress Plugin?
FYI - Data is populated on the website via CSV using the Import/Export option of Formidable Plugin. Data is huge (1 million), so changing the case in the data itself is not a good option.
When the form is getting submitted, the value of Code Dropdown getting saved as "Forex", but I want value will get saved as "forex". Please suggest. Thanks in advance.
Following things I have tried:
Created New Custom CSS
Added this custom CSS into Lookup Field as:
Also tried to use Customize HTML from FORM Setting as:
Here in the customize HTML code, I am unable to understand, how to tweak it, so that submitted value will be in lowercase.
For anyone still looking for an answer on how to do this, Formidable provides the ability to do this by using seperate field values for the saved data.
Directly under the Dropdown Options you need to tick the checkbox:
Use separate values
Once this is ticked you will see an additional option for each field for the submitted value. That way you can enter the lowercase value you need in the save option field.
Note you may need a Formidable base license to see this option.
More info here:
https://formidableforms.com/knowledgebase/separate-values/

How to "separate" image uploads while using multiupload image field

My client has a bizarre request which is making it difficult to build a slideshow on profile2 pages: The profile2 pages require 4 photos to be uploaded, and he does not believe that the users adding content to the site will "get" the multi-select method found in most file upload modules. The Field Slideshow module only works if you're using multiupload (which of course makes sense), and that's how I had it set up initially - which worked perfectly. I've tried using the field collection module, then creating a Slideshow view, but the image fields in the field collection field aren't being seen as a group. I think I had to select one of the 4 image fields to use instead of all 4. Any ideas?
he does not believe that the users adding content to the site will "get" the multi-select method found in most file upload modules
This hardly makes sense, I guess you tried to explain things to your client ?
Assuming you have several image fields on your content type, you could build a view which create a list (unformatted or HTML list) of these fields, maybe using a global field rewriting (you add all your image fields, exclude them from display, custom their display by removing field wrapper and field+label wrapper (in order to get only ), add a global text field in which you include image fields token), and then create your slideshow in a custom javascript file, using whatever library you like (Cycle2 is great).
Your global text field would look like :
<div class="wrapper cycle-slideshow">
[field_image]
[field_image_1]
...
</div>
(with cycle2 adding a cycle-slideshow class will initialize your slideshow)
...but you need token to do so.
I often find it more convenient to setup javascript things like that (slideshows, gmaps...) by myself instead of using views integration.
Hope I understood your issue correctly, good luke with this.
For every (custom) field you have option "Number of values" which you can set to fixed amount (i.e. 4) or unlimited. Can you use that?
Easier: Use Rules. Create an additonal (fifth) image field (multivalued) that will be the one consuming the slideshow. Create a new Rule, triggered on creation or update of your content with 4 actions: each one adding the content of one of the fields to the multivalued field list. You probably need to avoid showing that field but that depends on what are you using to display, so hide it using display suite or just not using it in the content template. This way, you show your users your 4 fields but makes the slideshow work based on a computing of the user inputs.

Create a drupal 6 views slideshow from a single content type that has both, image and video fields

I need a little direction. I've created a content type that has both, images and videos attached to a node. I need to create a single frame slideshow that riffles through the mixed media. Currently, I'm using the Embedded Media Field as well as the ImageField to upload the content. I'd like to keep that within the same content type if possible. I was considering separating them and then using taxonomy to make them relational, but that sounds convoluted. At this point, the slideshow displays them both, together.
Could I add both fields to an array in a template file, then return them as one field?
It sounds like you want to add some markup that encapsulates both fields. If that is the case, you can re-write the output of the fields.
Try this:
Edit the "Content: Slideshow main image" field
Enable "Exclude from display"
Click Update
Edit the "Content: Upload Full Size Video" field
Enable "Rewrite the output of this field"
Here you can add whichever markup you want and make use of the field tokens. For example, something like <div>[field_slideshow]<br>[field_upload]</div> Note: The token values will depend on the names of your CCK fields.
Also, for Drupal related questions, there is a separate Drupal Answers exchange where you might get more targeted help.

Drupal 7 Views list, add link

Currently I have a Drupal installation which has colorbox installed, this allows me to upload a group of images with some text, each entry is its own entity but are all listed on the same page.
I was just wondering if there is a way that I can display a custom link under each views item (entity). Is this possible?
I'm looking for a quick way to simply add a link that links to the first image of the colorbox image slider.
First, set your Format to Show: Fields. To do so, click the link next to Show: (refer to the picture below) and change it to Fields.
If your Format is set to Show: Fields, you can add a new field of type Global: Custom text. Then, in the text box that appears, simply insert your custom link. If you need to pull in the URL dynamically, use a Replacement Pattern (see the list under the text box).
If you need to use another field as a replacement pattern, add it in the same way as you added the Global: Custom text field but make sure to check the Exclude from display checkbox so that it is not shown in your view.

Wordpress + Meta box: For each field value

I am trying to get value of each clone (adding by +) field value and want to repeat video embed code.
First I am using this wordpress meta box plugin.
http://www.deluxeblogtips.com/2010/04/how-to-create-meta-box-wordpress-post.html
I have a CPT where I want to use one code that will display as per the number of fields. There is a text meta box on CPT where user can add more by clicking on + button means clone. So for each field user will enter different value of image ID. So I want to repeat my code as per the number of field.
So if user adds 3 field it will repeat the code 3 times. which have something this structure.
<div>
<img src="first-field-value" />
</div>
So I want to repeat this structure as per how many field user created and entered the value for that.
I am really sorry if I unable to describe properly. But please let me know if you want to know something more than this.
The Wp Alchemy class at http://farinspace.com/wpalchemy-metabox/ allows for repeating fields.
If you are rolling your own, you need to make sure that the form fields that represent your data entry are named with a trailing '[]', eg; myfieldname[]. This ensures that php treats the values for each cloned item as an array.

Resources