Metahuman Network Posted December 11, 2019 Share Posted December 11, 2019 Hello! I'm attempting to style my e-mail templates. I've gotten all of them working except those that already have an href that is generated in the smarty link. The standard link displays, breaking the current code and is not clickable. It shows as 'WEBDATA: *ALPHA-NUMERIC HASH*'. Any way to get it to display 'nicely'? Code and example below. Thanks! <td align="center" valign="top" class="lh-1"> <a href="{$client_email_verification_link}" class="btn bg-green border-green"> <span class="btn-span">Verify Me!</span> </a> </td> 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted December 12, 2019 Share Posted December 12, 2019 17 hours ago, Metahuman Network said: Any way to get it to display 'nicely'? you could try replacing... <a href="{$client_email_verification_link}" class="btn bg-green border-green"> with... <a href="{$whmcs_url}clientarea.php?verificationId={$client_email_verification_id}" class="btn bg-green border-green"> 1 Quote Link to comment Share on other sites More sharing options...
string Posted December 12, 2019 Share Posted December 12, 2019 <td align="center" valign="top" class="lh-1"> <a href="{$client_email_verification_link|strip_tags:false}" class="btn bg-green border-green"> <span class="btn-span">Verify Me!</span> </a> </td> "strip_tags:false" should work for you. 0 Quote Link to comment Share on other sites More sharing options...
Metahuman Network Posted December 12, 2019 Author Share Posted December 12, 2019 Thanks so much, Brian! that works perfectly. 0 Quote Link to comment Share on other sites More sharing options...
Bhondawe30 Posted December 20, 2019 Share Posted December 20, 2019 On 12/12/2019 at 8:00 PM, string said: <td align="center" valign="top" class="lh-1"> <a href="{$client_email_verification_link|strip_tags:false}" class="btn bg-green border-green"> <span class="btn-span">Verify Me!</span> </a> </td> "strip_tags:false" should work for you. Thanks for sharing the code, Its a perfectly working. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.