WPThumbs
Themes Plugins By purpose By industry Best-of lists Fix it guides
Free Plugin by Nick Ciske v2.7.3.9

Brilliant Web-to-Lead for Salesforce

Brilliant Web-to-Lead for Salesforce creates a solid integration between your WordPress install(s) and your Salesforce.com account!

Brilliant Web-to-Lead for Salesforce

The facts

Rating
4.4★ from 38
Active installs
2k+
Price
Free
Last updated
24 Feb 2022
Added
Apr 2010
Requires WP
5.0
Tested up to
WP 5.9.16
Requires PHP
7.4
Downloads
138,978

Our analysis

AI-assisted

Brilliant Web-to-Lead for Salesforce is a WordPress plugin that integrates your WordPress site with Salesforce CRM. It allows users to fill out a contact form on your site, automatically sending the lead or case information directly to Salesforce, eliminating the need for manual data entry.

The plugin offers configuration options for the form and provides a shortcode for easy insertion into posts or pages, as well as a widget for sidebar placement. It is suitable for users who want to streamline lead management and improve their CRM processes.

Best for: This plugin is best for WordPress users looking to manage leads through Salesforce CRM.

What it does well

  • Creates integration between WordPress and Salesforce CRM
  • Eliminates manual data entry for leads
  • Configurable settings for forms
  • Shortcode and widget options for easy form placement

Where it falls short

  • Limited information on additional features
  • No details on support or documentation

Verdict

Brilliant Web-to-Lead for Salesforce provides a straightforward solution for integrating lead capture with Salesforce. It may suit users seeking to enhance their lead management without extensive customisation.

From the developer

Nick Ciske's own description of Brilliant Web-to-Lead for Salesforce, lightly tidied.

Brilliant Web-to-Lead for Salesforce creates a solid integration between your WordPress install(s) and your Salesforce CRM account! People can enter a contact form on your site, and the lead (or case) goes straight into Salesforce CRM: no more copy pasting lead info, no more missing leads: each and every one of them is in Salesforce.com for you to follow up.

Features

You can fully configure all the different settings for the form, and then use a shortcode to insert the form into your posts or pages, or you can use the widget that comes with the plugin and insert the form into your sidebar!

Previous contributors:

Filters and Hooks

Note:

  • These should be placed in your active theme functions.php or a functionality plugin.
  • Never edit a plugin directly (unless you understand the implications of doing so).
  • You can use Pluginception to create a custom plugin for these to make them independent of your theme: https://wordpress.org/plugins/pluginception/

Filters

salesforce_w2l_api_url

Change the API url the plugin posts data to. Passes the form type (lead or case)

add_filter( 'salesforce_w2l_api_url', 'my_w2l_api_url', 10, 2 );

function my_w2l_api_url( $url, $form_type ){
    return 'https://my.custom-api-url.com/something/';
}

sfwp2l_validate_field

Provide your own validation logic for each field.

An error array is passed in, along with the field name, submitted value, and field configuration (type, default value, required, etc).

Here’s an example of blocking common free email providers:

Read the full description on the official page →

Tagged as