Jump to content

Add a sign-up image to Visitor group in Production desctiption


Recommended Posts

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

post-728741-0-41754000-1398845498_thumb.jpg

Link to comment
Share on other sites

  • 2 weeks later...

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

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

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

×
×
  • Create New...