When you add a Targeted Content widget, you cannot select several fields that were mapped in your DXH connector.
The Targeted Content widget has its own
dxhTargetingRules.config
file, which dictates the fields that are available for each type of connector.
- Edit dxhTargetingRules.config in your site's root folder.
- Locate the connector section you want. For example, Hubspot appears as follows:
<Connector name="HubSpot"> <ConnectorObject name="HubSpot.Contact"> <add name="Email Address" value="email" /> <add name="Company" value="company" /> <add name="First Name" value="firstname" /> <add name="Last Name" value="lastname" /> <add name="Address" value="address" /> <add name="City" value="city" /> <add name="State" value="state" /> <add name="Country" value="country" /> </ConnectorObject>
- Add rows corresponding to the desired fields as you see fit. For example:
<Connector name="HubSpot"> <ConnectorObject name="HubSpot.Contact"> <add name="example1" value="example1" /> <add name="example2" value="example2" /> <add name="Email Address" value="email" /> <add name="Company" value="company" /> <add name="First Name" value="firstname" /> <add name="Last Name" value="lastname" /> <add name="Address" value="address" /> <add name="City" value="city" /> <add name="State" value="state" /> <add name="Country" value="country" /> </ConnectorObject>
Please sign in to leave a comment.