Import Google contact with custom Field from csv - csv

I have a csv as
First, mobile, id
Tom, 1276546789, 52
rosh, 2764898735, 73
.......
.......
.......
I would like to import this contact details in my google account with including the custom field name "ID" and its value.
I found so many option from google search but none of them works. it only insert the name and mobile only.
Thanks in advance.

The heading "Organizational ID Number" is valid, it is added as a custom field towards the bottom of the contact page.
I believe "Government ID Number" is also valid but haven't used it myself.

Related

extract data from contact form 7 email and inject into database using postie function

i’ve set up an online form using contact form 7 that posts to my secret postie email address. each email gets collected and listed in draft format for moderation.
the post_type i’m using is one called testimonials that comes with my theme, which doesn’t have a body section as such, instead it has four custom fields – ‘author_name’, ‘author_company’ [not required], ‘author_url’ [also not required] and ‘author_quote’.
what i would like to do is have postie auto-fill the author_name and author_quote fields instead of trying to fill the [non-existent] body, using the your-name and your-message fields in contact form 7. that is, i want the values of the contact form your-name and your-message fields to be injected into the database as the meta_values of the pyre_author_name and pyre_author_quote meta_keys
i hope that makes sense?
i tried tweaking the add_custom_field function in the filterPostie.php file to see if anything worked, but no
function add_custom_field($post) {
if (‘testimonials’ == get_post_type()) {
add_post_meta($post[‘ID’], ‘pyre_author_name’, ‘$your_name’);
add_post_meta($post[‘ID’], ‘pyre_author_quote’, ‘your-message’);
return $your_name;
return your-message;
}
}
can anyone see what i'm doing wrong, or know what i might have to try to achieve what i want?
the site i'm working on is here: https://sistascarpentry.co.uk/testimonials/
thanks in advance

Referencing to a subform text field

I know it is a simple problem and I should be able to google it and work it out myself, yet 2 hours later and I still cannot get my head around this simple problem.
I have:
Navigation Form called "Menu2"
Form called "Red Tag"
Field in Red Tag called "Nr" and "Tekst149"
I now that I do not call "Red Tag" but use its control name which is "PodformularzNawigacji".
I tried:
Forms![Menu2].[PodformularzNawigacji].Form.[Nr] Like Forms![Menu2].[PodformularzNawigacji].Form.[Tekst149]
Or
Forms![Menu2].[PodformularzNawigacji].Form.[Nr] Like Forms![Menu2].[PodformularzNawigacji].Form.[Tekst149]
Or
Forms![Menu2]![PodformularzNawigacji]![Nr] like Forms![Menu2]![PodformularzNawigacji]![Tekst149]
And many more but without success. I do not have English version of Access, perhaps that also the problem (of course I don't use "Forms" but its equivalent in my language)
Edit:
The problem is that this reference is incorrect "This form is not connected to any table or a query". When I had this form as a stand alone form everything worked it was only:
[Nr] Like Forms![Red Tag]![Tekst152]
It could be:
Forms![Menu2]![PodformularzNawigacji].Form![Nr] Like Forms![Menu2]![PodformularzNawigacji].Form![Tekst149]

how to set HTML Tag in Textview in android?

I am using Html Tag in TextView. But can not Proper display.
Please guide me.
example,
Payemt Bill:
You can pay your bill:
• By mail: sending a check with your
invoice abc abc abc on it.
Don’t forget to include your Phone no.
• In person: with any of our receptionists.
• Online: fill out this form below.
If you have questions about your invoice, please call our billing department at 1000-1000-100
My code is,
txtPayBillOne.setMovementMethod(LinkMovementMethod.getInstance());
String strPayBillOne1="<p>You can pay your bill:<ul><li><b>By mail:</b> sending a check with your invoice abc abc abc on it. Don’t forget to include your Phone no. </li><li><b>In person:</b> with any of our front desk receptionists. </li><li><b>Online:</b> fill out this form.</li></ul><br />If you have questions about your invoice, please call our billing department at 1000-1000-1000</p>";
txtPayBillOne.setText(Html.fromHtml(strPayBillOne1);
How to use for this format? and how to get this format in TextView?
like this you can add Html to your text view
String input = "<b>bold</b>";
myTextView.setText(Html.fromHtml(input));
On the place of input you can provide your values.Hope this will help you

How to set selected value when using g:select in grails

I'm newbie with Grails framwork.
I have issue:
I have Domain is: "Country". And I wants to show list country in select tag by using g:select in Grails
For example: The data store in database can see below
ID Name
1 England
2 Canada
3 Germany
Now, I wants set "Canada" is selected.
Who can help me. Please!
Use the value attribute to set the selected item:
<g:select name="user.company.id"
from="${Company.list()}"
value="${user?.company.id}"
optionKey="id" />
Why not use g:countrySelect tag? This will save One whole Domain.
Use the select tag structure provided by mpccolorado, then to have Canada selected by default change the value to:
value="2"
(the Id for Canada).

How can I hide the HTML in a gravity form field from appearing in te confirmation message?

Basically I am using a radio button field and have added HTML in the field itself to link and a preview plugin class like so
Field: Sedan, 3-passenger View
And this works fine except when the form gives confirmation message using the corresponding field's merge tag {vehicle you would like} it shows the entry and all the HTML as a string as well, which obviously is a problem. How can I fix this issue and have the confirmation treat the html as such? Do I have to add all of this html as a class instead and apply it to the unique entry css instead of inline or is there some way to mess with the merge tags or with minimal css changes to the confirmation message classes?
The stuff in the confirmation field in the form UI (using inline styles to test for now, I know its not the best way but either way doesn't really solve my problem):
<p style="text-align:center;"><strong style="font-size:16px;"> Thank you!!!</strong>
We will send you an <strong style="color:#8E0F0F;">Email Quote</strong> within the next <strong style="color:#8E0F0F;">30 minutes.</strong>*
*Subject to Driver Availability.
<strong style="color:#8E0F0F;">Important Warning: When we send you an Email Quote, it might end up in your SPAM/JUNK EMAIL folder, so please double check that folder.</strong></p>
<strong>Submitted:</strong>{date_mdy}
<strong>Status:</strong> Waiting to be accepted by a Service Provider.
<strong>Pick Up:</strong> On{Pick-Up On::7}, at {At::8} at
{Address (Street Address):9.1} {Address (City):9.3}
<strong>Drop Off:</strong> {Drop-Off Airport/Cruise Port:10}
<strong>Passenger or group name:</strong> {Passenger/Group Name:15}
<strong>Number of Passengers:</strong> {Number of People in the Group:16}
<strong>Contact Person:</strong>{Contact Person's Name:17}
<strong>Quote will be emailed to:</strong>{Contact Person's Email:18}
<strong>Rate:</strong> {What Type of Vehicle Would You Like?:6} Quote to be Provided. <strong>15% Online Discount Active!</strong>
Extra question on the same form, is there any way to attach a timestamp to the {date_mdy} merge tag so it actually includes the time of submission in the confirmation and not just the date? Obviously the hook exists since entry time is shown in the WP backend but I don't know how to go about getting it to work here. Thank you for any replies, this car reservation form has been a headache.