I want to get a custom output for the Content Email Cloaking plugin in a template override.
Is this even possible?
I've also tried this:
Code: Select all
<?php
$emailparams = array(
'class' => 'member-contact-icon',
'title' => 'Email',
'target' => '_blank',
'icon' => '<ion-icon class="icon" size="large" name="mail-sharp"></ion-icon>'
);
echo JHtml::_('email.cloak', $memberinfo['email'], $emailparams);
?>
Thanks guys.