Hi Zack, thanks for the update. I’m now trying to add the gf_salesforce_proxy filter to our functions.php, but this is not working.
The documentation on this filter is not very extensive, so maybe I’m doing something wrong, but I can’t figure out what. Can you please elaborate on how to use this specific filter?
the code in our themes funcions.php looks something like this:
add_filter('gf_salesforce_proxy ', 'set_proxy');
function set_proxy(){
require_once <path to ProxySettings.php>;
$proxy = new ProxySettings();
$proxy->host = 'our.proxy.address';
$proxy->port = <port integer>;
$proxy->login = '';
$proxy->password = '';
return $proxy;
}