/*
Add SSL Seal to PMPro Checkout Page
Add this code to a custom plugin or your active theme's functions.php.
Custom code is necessary for this now that PMPro 1.9.3 for security reasons
doesn't allow script tags in the SSL Seal setting text area.
The example below is for an AlphaSSL certificate. Replace the $seal string below with
your own seals code. Be careful if the seal has single quotes in it.
Below we also append (. $seal) the original $seal code as set on the advanced settings page,
where on our own site we add some extra info to this area.
*/
function my_option_pmpro_sslseal($seal) {
if(!is_admin()) {
$seal = '
' . $seal;
}
return $seal;
}
add_filter('option_pmpro_sslseal', 'my_option_pmpro_sslseal');