Jump to content
  • 0

Blokowanie kategorii dla niezalogowanych


korni

Question

Witam, 

Presta 1.5.4.1

 

Obecnie, domyślnie w preście jest ukrywanie kategorii (blockcategories), dla osób, które nie posiadają konta (klienci), Chciałbym zmodyfikować ten moduł, w ten sposób, aby wyświetlał nazwę kategorii, ale zabraniał dostępu do niej albo poprzez nieaktywny link, albo poprzez wyświetlenie info "że dostęp tylko dla zalogowanych".

 

Wiecie może jak tego dokonać?

 

 

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

też tak myślałem. W ostateczności zastosuję te rozwiązanie. Ma ono tą wadę, że przy dodaniu nowej kategorii będę musiał cały czas modyfikować ręcznie szablon wrzucając operator logiczny. 
Bardziej interesujące rozwiązanie byłoby jakby zmodyfikować php modułu, Jest funkcja, w której m.in. pobiera grupę klientów:
 

	public function hookLeftColumn($params)
	{	
		if (!$this->isCached('blockcategories.tpl', $this->getCacheId()))
		{
			// Get all groups for this customer and concatenate them as a string: "1,2,3..."
			$groups = implode(', ', Customer::getGroupsStatic((int)$this->context->customer->id));
...
}

tylko nie bardzo mogę znaleźć co on potem z tą zmienną robi.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...