The following methods will help you remove all lead capture capabilities from the Buying Buddy widgets.
For example, Save Search, Save Property, Schedule a Showing, Send to Friend – and more.
1. Turn Off Lead Capture Settings
The first thing to do is adjust your Lead Capture settings so that all ‘forced’ lead capture setting options are removed.
[nav]CRM Settings / Lead Capture Settings[/nav]
- Set limits for SEARCH RESULTS and PROPERTY VIEWS to be unlimited
See how to adjust Lead Capture Settings.
2. Remove the My Account / Login Widget
This is typically deployed in sidebar areas:
- Remove this widget if you are using it
See details on the My Account / Login widget.
3. Remove the “Hello – Register – Login” Quick Widget
This widget creates a simple text link for login or register.
- Remove this widget if you are using it
See details on Register – Login Widget.
4. Remove any Lead Capture Form (LcForm) widgets
If you are using any forms for lead capture, then remove all of these.
5. Add CSS to hide all lead capture methods on Widgets
All the lead capture and call-to-action methods that are shown on the widgets will be hidden by applying the CSS code shown below.
The method to add this will vary depending on your website editor (i.e. Squarespace, WordPress etc).
[codeex]<style type=”text/css”>
/* Remove lead capture and CTA options on Buying Buddy widgets */
[id^=MBBv3]:not(#mbbV1) .bfg-lc {
display: none !important;
}
</style>[/codeex]