abhey.thareja Posted April 30, 2014 Share Posted April 30, 2014 Hi, I would like to add a sign-up image or information on each products page under the combinations box where the visitor is informed that the prices are visible only once you register with us. Note: Ideally, this image/ banner/ adv should be available only when a 'VISITOR' is looking at the page and should not show when the customer is signed in. Ref attached image for the exact location or somewhere around where it can be easily seen. Thanks, Abhey Link to comment Share on other sites More sharing options...
vekia Posted May 11, 2014 Share Posted May 11, 2014 you can do it in several ways, with modules like html box pro, product page content blocks or also manually with modification of .tpl file if you select third option go to product.tpl file located in your theme directory and below the right column block add code to display image: <a href="http://address.to.website.com/"> <img src="full-url-to-your-signup-banner" /> </a> don't forget to change: http://address.to.website.com/ this is url where you want to redirect users after click on banner full-url-to-your-signup-banner you have to upload your picutre somewhere, then use here full url to this pic Link to comment Share on other sites More sharing options...
abhey.thareja Posted May 12, 2014 Author Share Posted May 12, 2014 you can do it in several ways, with modules like html box pro, product page content blocks or also manually with modification of .tpl file if you select third option go to product.tpl file located in your theme directory and below the right column block add code to display image: <a href="http://address.to.website.com/"> <img src="full-url-to-your-signup-banner" /> </a> don't forget to change: http://address.to.website.com/ this is url where you want to redirect users after click on banner full-url-to-your-signup-banner you have to upload your picutre somewhere, then use here full url to this pic Thanks Vekia, but which one is the safest of the three options? If the last one is the best; how do i get the image under the products page only for guests and visitors please? Thanks, Abhey Link to comment Share on other sites More sharing options...
vekia Posted May 12, 2014 Share Posted May 12, 2014 each of them are safe, you don't have to worry about safety. if you want to dispaly it only for guests and vistors you can use html block pro module (it has got option to display contents for unlogged or logged customers) if you want to use third method add if condition: {if !$logged} <a href="http://address.to.website.com/"> <img src="full-url-to-your-signup-banner" /> </a> {/if} Link to comment Share on other sites More sharing options...
Recommended Posts