Jump to content

Restrict viewing homefeatured products to certain customer groups


Recommended Posts

what version of prestashop? that is always a good start as checking for logged and non-logged differs from 1.4 and 1.5

 

the simplest way is in modules-->homefeatured-->homefeatures.php

 

find this line

 

return $this->display(__FILE__, 'homefeatured.tpl');

 

and add

if logged (your version)
  return $this->display(__FILE__, 'homefeatured.tpl');
else
  return;

Link to comment
Share on other sites

  • 4 weeks later...
×
×
  • Create New...