Jump to content

allow only identified visitors to download


Recommended Posts

So you want customers to only be able to download from the "Download" tab on the product page if they are logged in? You could change lines 354-356 (in PrestaShop v1.3.2) of product.tpl in your theme's directory from:

{foreach from=$attachments item=attachment}
{$attachment.name|escape:'htmlall':'UTF-8'}
{$attachment.description|escape:'htmlall':'UTF-8'}
{/foreach}



to:

{if $logged}
{foreach from=$attachments item=attachment}
{$attachment.name|escape:'htmlall':'UTF-8'}
{$attachment.description|escape:'htmlall':'UTF-8'}
{/foreach}
{else}
Please log in before downloading.
{/if}

Link to comment
Share on other sites

  • 1 month later...
So you want customers to only be able to download from the "Download" tab on the product page if they are logged in? You could change lines 354-356 (in PrestaShop v1.3.2) of product.tpl in your theme's directory from:

{foreach from=$attachments item=attachment}
{$attachment.name|escape:'htmlall':'UTF-8'}
{$attachment.description|escape:'htmlall':'UTF-8'}
{/foreach}



to:

{if $logged}
{foreach from=$attachments item=attachment}
{$attachment.name|escape:'htmlall':'UTF-8'}
{$attachment.description|escape:'htmlall':'UTF-8'}
{/foreach}
{else}
Please log in before downloading.
{/if}



HI rocky. Do you have a trick for this:

i need that guest can download the free products without register. A downlaod buton in product page
Link to comment
Share on other sites

×
×
  • Create New...