Jump to content

B2B Shop


Recommended Posts

Hello,

first, please excuse me for my bad English. I hope you understand my question correctly.

Is it possible to make a B2B shop with PrestaShop without programming a new modul?
That means, that costumer see only prices if they are logged in. And if someone create an Account, the admin must first open the account, before the person can see prices and logged in.

Is this possible with the PrestaShop?

Thanks for answers

Timo

Link to comment
Share on other sites

  • 3 months later...

Yes, it's possible. You need to modify the Prestashop files that display prices and add:

if (!$params['cookie']->isLogged())
echo 'Please log in to view prices."
else
{Price variable - Whatever that may be.}

The if statement checks to see that the cookie that's dropped into the customer's browser when he/she logs in is in place before it populates the variable. Otherwise, it kicks out the phrase "Please log in to view prices."

I hope that helps.

Vline

Link to comment
Share on other sites

Actually, you could reverse that by taking out the "!" and it would make more sense.

if ($params[‘cookie’]->isLogged())
{Price variable – Whatever that may be.}
else
echo ‘Please log in to view prices.”

Whichever you'd like.

Link to comment
Share on other sites

×
×
  • Create New...