How-to include two text inputs in one answer - google-forms

I have a question to Google forms.
How can I include more Text field answers in one question?
Example:
Q: How many children do you have in your class?
A: blue-eyed ______ brown-eyed ______
So I need to save two text fields (blue-eyed, brown-eyed) in one answer.

Related

How to add a screenshot when I respond [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 1 year ago.
Improve this question
During the communication with someone under a question I asked, I wanted to send a comment with a screenshot. How to do that?
Here's a cheat for using Stack's image methods for comments: it uses the mechanism used in questions and answers to imgur-ize the image, but we don't want/need the question/answer itself.
But first, a public-service announcement:
Please do not post an image of code/data/errors: it breaks screen-readers, formats really poorly in comments, and it cannot be copied or searched (ref: https://meta.stackoverflow.com/a/285557 and https://xkcd.com/2116/). Please just include the code, console output, or data (e.g., data.frame(...) or the output from dput(head(x))) directly (in the original question).
Okay, now the cheat:
Go into the "Your Answer" (or change to a new tab and ask a "New Question", not to be saved);
Paste the screenshot of note, making sure that the Stack interface recognizes it as an image;
Copy the imgur link (i.e., the https://i.stack.imgur.com/Kvl4I.png in my example) from the text and add to your comment.
... then paste the resulting link in your comment ...
Do not save or submit the question or answer! This is important: please don't "pollute" the answer-space or question-list with a imgurize-my-image-please fake question/answer.
Disclaimer: I have no idea what the expiration policy is for stack imgur; if it expires then the comment loses a bit of meaning. Granted, this happens to questions/answers all of the time with stale/broken links ...
The text box gives you options so here's the screenshot of how you would do it.
If you just paste it in while typing it also works.
Just make a screenshot (with snipping tool or screenpresso) and add it to the textbox.
Example:

How to store multiple user entries [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 1 year ago.
Improve this question
I am trying to figure out how to store user specific data in Wordpress. The user is supposed to insert their weight, the date and then be able to make multiple entries so that each entry can be presented in a table for that specific user.
I was wondering if this is possible to do through a plugin like JetEngine? And would this be possible to do through meta data or would I have to use something like Custom Content Type?
Thank you in advance.
There's two solutions for your problem.
Easy solution
Use a plugin like ACF with repeater add-on and create custom field for each kpi (weight, height, etc.) and for each add two sub field date and value.
House made solution
Create a json structure to be saved in the user meta which then decodes in php to show it in a table.
About this solution.
// The information return via $_POST
$weight=json_encode($_POST['weight']);
update_user_meta(get_current_user_id(),'weight',$weight)
// To show this information
$weight=json_decode(get_user_meta(get_current_user_id(),'weight',true);
// Create the table.

Two Document having same documentId in Cloud Firestore [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 3 years ago.
Improve this question
I have root collection, inside that two documents having the same Document Id. The first document having data and the second is in italic format. On click of the second document, it will navigate to an error page saying that the project does not exist or either you do not have permission. Attaching a screenshot for reference.
It showing two document with the same DocumentId first in normal case and second in Italic. "Maharashtra", "Maharashtra".
At some point in the past, you have deleted the document "Maharashtra" without recursively deleting it's child collections.
These collections are still present in your database but not currently attached to the parent document. As an example, the document "/states/Maharashtra/logs/day1" might exist with data, while it's parent collection "/states/Maharashtra/logs" is not a part of the current document "/states/Maharashtra".
You should be able to expand the italicised entry to see it's orphaned sub-collections.
#puf explained it better here.

Design or Plugin suggestion for Wordpress site [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I need to create a WP site which will have multiple subjects. Each subject will have multiple lessons and each lesson will have meta data like title, description etc etc. A User will be allowed to read some lessons and based on number of lessons read, he will be assigned some custom badges.
While showing any lesson, we should be able to show the list of users who have already read that lesson.
To get this done on WP, I am planning to use some Custom Content Type Plugin which I can use to create Subject, Lessons and the User Meta to store users action on any lesson. The Badges can also be made part of Users Meta.
The Problem I see are
I dont know any way to map Subjects to Lessons i.e while creating a new lesson, I should be able to map it to one subject (like we do node linking in Drupal )
I am not use if User meta table can be used to store many to many info like "XYZ user have read 25 lessons" and "ABC Lesson was read by 10 Users"
What should be the best design for this kind of Application.
cant you solve problem 1 with categories?
And if you save each 'read' in the usermeta with each lesson having an unique meta. You could just count those.
I dont know any way to map Subjects to Lessons i.e while creating a new lesson, I should be able to map it to one subject (like we do node linking in Drupal )
Why don't you set up the subjects as categories? Then when you create each lesson you can map it to the subject category.

Search result issue with Search API Module in drupal 7 [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I'm working with Drupal-7; where i have installed so many different modules in it. one of them modules is "Search API".
The problem what i'm facing is Result of searched keyword. whenever i use to search for a particular keyword it working for the Exact match with that key word.
For example : keyword = "Drupal" ;
then result only retrieved if this exact word will match with the content of database. but i would like to get result which are having any of these characters.
For example : keyword = "Dru" ;
then also all the result will retrieved which is having only word "Dru" as well as "Drupal" & etc..
In short now Query is working with "=" operator but i would like to make it with "LIKE" operator.
What should i do in which page to get resolve this..?
I have tried to many things but not get success..Please help me out.
Drupal core does not allow partial search string search. Below are your options if you want partial string search in your results.
1) Use Apache solr server.
2) http://drupal.org/project/porterstemmer is another one
3) use google custom site search instead . http://drupal.org/project/google_cse
Hope this helps.
Cheers,
Vishal

Resources