Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
Locked
0

How do I add an Apartment number field to the Home Address Web Forms?

Explorer ,
May 15, 2015 May 15, 2015

Home Address is the only field that is included with the standard Contacts web form. How come I can't add a Street Address, Apartment/Suite without creating a custom field for this?

There currently is no way to include a second Home address field for apartment or suite numbers that is tied to the CRM. You have to create an entire custom form for this.

1.4K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Explorer , May 16, 2015 May 16, 2015

I created a workaround for this.

1) Extend CRM database and add two fields called, "Street Address" and a second one called "Apartment/Suite"

2) Add those new fields to the contact form

3) Use jQuery to collect and store the values

4) Concatenate the values in the HomeAddress field using jQuery

$('#StreetAddress, #AptSuite,).bind('keypress blur', function() {

       

$('#HomeAddress').val($('#StreetAddress').val() + ' ' +
$('#AptSuite').val() );
});
Translate
Guide ,
May 16, 2015 May 16, 2015

Not sure you can without a custom field. What is wrong with a person typing in the address in one line? IE: 123 Anywhere St. APT. 101?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
May 16, 2015 May 16, 2015

Thank you for your help. People in the United States don't type their apartment into one line like that. Business Catalyst never took in the consideration of the United States when creating this CMS.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
May 16, 2015 May 16, 2015

I created a workaround for this.

1) Extend CRM database and add two fields called, "Street Address" and a second one called "Apartment/Suite"

2) Add those new fields to the contact form

3) Use jQuery to collect and store the values

4) Concatenate the values in the HomeAddress field using jQuery

$('#StreetAddress, #AptSuite,).bind('keypress blur', function() {

       

$('#HomeAddress').val($('#StreetAddress').val() + ' ' +
$('#AptSuite').val() );
});
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
May 16, 2015 May 16, 2015
LATEST

Glad to see you found a workaround.

iWorldConcepts wrote:

People in the United States don't type their apartment into one line like that.

Unsure if I agree with this. I know many people, including myself, type the address, including suite/apt. number, in one line and rarely use other fields, if available.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines