Page 1 of 1

Product Display

Posted: Mon Apr 11, 2011 9:41 pm
by ham
Hi does anyone know if it is possible to have certain products only displayed to registered members of the website when logged in, but still have the rest of the products displayed to guests?

thanks in advance :)

Re: Product Display

Posted: Tue Apr 12, 2011 6:45 am
by Avvici
Focus on the session for logged users because only they can actually be registered. One can do a lot with a simple conditional:

in your control file it would start like this:
if ($this->customer->isLogged()) {

In your TPL(html) O0 it would start like this:
if ($logged){

Re: Product Display

Posted: Wed Apr 20, 2011 4:19 am
by ham
Hi avvici, thanks for the reply, sorry it has taken so long to respond.

Could you give me a little more help?

what directory is the TPL file located in?

Re: Product Display

Posted: Thu Apr 28, 2011 11:34 pm
by openmycart.com
basically the tpl files located

catalog\view\theme\Your_theme\template\

Re: Product Display

Posted: Thu Apr 28, 2011 11:39 pm
by mystifier
You can restrict Categories to selected Customer Groups using This Mod but individual Products you would have to do what has been suggested.