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.
- 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 elements
Choose an option below. Only use one of the methods described.
OPTION-1: Remove all lead capture, inquiry and portal methods on Widgets
What is hidden?
All the lead capture, call-to-action and "My Account" methods that are shown on the widgets will be hidden.
Add the custom CSS below to your custom widget theme.
/* Remove lead capture and CTA options on Buying Buddy widgets */ [id^=MBBv3]:not(#mbbV1) .bfg-lc { display: none !important; }
OPTION-2: Remove all "Portal" services, but show lead capture and inquiry elements
What is hidden?
All the "My Account" methods including "save a search" and "save a property" that are shown on the widgets will be hidden
What is still shown?
Buttons and links that allow the lead to "contact agent", "schedule showing" and "request more information" etc, and other CTA methods that capture leads, will all be displayed.
Add the custom CSS below to your custom widget theme.
/* Remove My Account options but maintain lead capture, inquiry and and CTA options on Buying Buddy widgets */ [id^=MBBv3]:not(#mbbV1) .bfg-no-account { display: none !important; }