Elastic 2 Footer Issue
Design and Skin Customization
I've got the social links checking for https: in the skin settings now for the next release, this is how I did it.
{if strlen($_conf.jrElastic2_facebook_url) > 1}
{if $_conf.jrElastic2_facebook_url|strpos:"https:" !== false}
<a href="{$_conf.jrElastic2_facebook_url}">{jrCore_image image="sn-facebook.png" width="40" height="40" class="social-img" alt="facebook" title="Like {$_conf.jrElastic2_facebook_url} on Facebook"}</a>
{else}
<a href="https://facebook.com/{$_conf.jrElastic2_facebook_url}">{jrCore_image image="sn-facebook.png" width="40" height="40" class="social-img" alt="facebook" title="Like {$_conf.jrElastic2_facebook_url} on Facebook"}</a>
{/if}
{/if}
Hope this helps!