HighLevel white-labelled accounts

#Overview

When using a white-labelled HighLevel account, it’s also possible to white-label the CRM name in the WordPress admin, or even white-label WP Fusion itself.

#White-labelling the CRM name in WP Fusion

Renaming the CRM in the WP Fuusion UI can be achieved with the wp_fusion_init_crm action.

function wpf_whitelabel_crm( &$crm ) {
	$crm->name = 'Custom Name';
}

add_action( 'wp_fusion_init_crm', 'wpf_whitelabel_crm' );

This example changes the View in CRM links across the WP Fusion UI. The %s will be replaced by the contact ID of the relevant contact.

function wpf_rewrite_view_in_crm_links( &$crm ) {
	$crm->edit_url = 'https://app.mybrand.com/v2/location/' . $crm->location_id . '/contacts/detail/%s';
}
add_action( 'wp_fusion_init_crm', 'wpf_rewrite_view_in_crm_links' );

#White-labelling WP Fusion

For more info on white-labelling WP Fusion, see this documentation page.

Was this helpful?

Our Black Friday Sale is Here! 🎉

Take advantage of the biggest discount we’ve ever offered. Save 30% off new licenses and upgrades.

Days
Hours
Minutes
Seconds
Sorry, this offer has expired.

Valid until Tuesday December 2nd.
See Terms and Conditions