Skip to content

Instantly share code, notes, and snippets.

Cablerite Solar Estimator — Simpro Integration Guide

Overview

PR #9 adds automatic syncing of solar estimate leads and bookings to Simpro CRM. When a customer generates a quote or books a consultation, the system creates matching records in Simpro.


Current Configuration Status

@izchk
izchk / gist:5200453
Last active December 15, 2015 04:19
Re branding the WP login screen for a client. Add this code to custom_functions.php template..
**REBRAND WP LOGIN**/
function my_custom_login() {
echo '';
}
add_action('login_head', 'my_custom_login');
function new_wp_login_url() {
echo bloginfo('url');
}