Mary26 Posted March 16, 2015 Share Posted March 16, 2015 Hello,In the footer, the word " INFORMATIONS " is like a hypertext link (the mouse pointer turns into a hand ), but it does not send to any page. How to remove the hyperlink Prestahop 1.6 Tank you Link to comment Share on other sites More sharing options...
rocky Posted March 17, 2015 Share Posted March 17, 2015 You can do so by changing lines 31-33 of modules/blockcms/blockcms.tpl in your theme's directory to: {* <a href="{$cms_title.category_link|escape:'html':'UTF-8'}">*} {if !empty($cms_title.name)}{$cms_title.name}{else}{$cms_title.category_name}{/if}{* </a>*}This will remove the link from the column headers, though I'd be careful, since the header link may be used in the mobile version of your theme, which will break if you remove it. Make sure you test the mobile version of your website. If the want the link to work on the mobile website, but not work on tablets and desktops, then I suggest adding some CSS to change the cursor to a mouse pointer. For example, add something like this in css/global.css inside your theme's directory: @media (min-width: 480px) { .block .title_block a:hover { cursor: pointer } } Link to comment Share on other sites More sharing options...
Mary26 Posted March 17, 2015 Author Share Posted March 17, 2015 Hello, thank you for your reply,That's right, do not touch the blockcms.tpl . The link is useful for the mobile version.I modified the global.css ".footer-container #footer h4" and everything is perfect for me. 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