explodedk Posted February 14, 2014 Share Posted February 14, 2014 (edited) is it possible to change the "contact hotline" to link to the "contact-us" page insted of a "mailto"-link the email address so that people will get the contact form... same goes for the link in the footer from the contact block. www.easybuy.dk Edited February 14, 2014 by explodedk (see edit history) Link to comment Share on other sites More sharing options...
Carlsen Posted February 14, 2014 Share Posted February 14, 2014 (edited) Hi, It can be done by editing the tpl files for each module. By looking at your image, I'm pretty sure you have to do these two modifications. I have written the file path, the line you should look for and what to replace it with: /themes/your_theme_name/modules/blockcontact/blockcontact.tplIn this file, replace {if $email != ''}<a href="mailto:{$email|escape:'htmlall':'UTF-8'}">{l s='Contact our expert support team!' mod='blockcontact'}</a>{/if} with <a href="{$link->getPageLink('contact', true)|escape:'html'}">{l s='Contact our expert support team!' mod='blockcontact'}</a> /themes/your_theme_name/modules/blockcontactinfos/blockcontactinfos.tpl In this file, replace {if $blockcontactinfos_email != ''}<li>{l s='Email:' mod='blockcontactinfos'} {mailto address=$blockcontactinfos_email|escape:'htmlall':'UTF-8' encode="hex"}</li>{/if} with <li><a href="{$link->getPageLink('contact', true)|escape:'html'}">{l s='Contact us here' mod='blockcontactinfos'}</a></li> Edited February 14, 2014 by Carlsen (see edit history) 1 Link to comment Share on other sites More sharing options...
explodedk Posted February 14, 2014 Author Share Posted February 14, 2014 worked like a charm Link to comment Share on other sites More sharing options...
ajccomp Posted February 15, 2014 Share Posted February 15, 2014 ok...i want to try.... Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now