[email protected] Posted August 17, 2018 Share Posted August 17, 2018 szukam wszędzie, znaleźć nie mogę, chcę zrobić żeby użytkownik po zalogowaniu, w prawym górnym rogu widział tylko swoje imię, jak jest: wyloguj się, imię , nazwisko jak chce: wyloguj się, imię znalazłem jakieś wskazówki do ps 1,6 i 1,5 ale wychodzi na to że 1,7 się z nimi nie pokrywa prawie w ogóle gdzież to mam zmienić żeby było dobrze? Link to comment Share on other sites More sharing options...
1 selljus.pl Posted August 17, 2018 Share Posted August 17, 2018 najszybciej będzie jak zmodyfikujesz moduł: \modules\ps_customersignin\ps_customersignin.php tak na skróty możesz zrobić: public function getWidgetVariables($hookName, array $configuration) { $logged = $this->context->customer->isLogged(); if ($logged) { $customerName = $this->getTranslator()->trans( '%firstname%', array( '%firstname%' => $this->context->customer->firstname, ), 'Modules.Customersignin.Admin' ); } else { $customerName = ''; } $link = $this->context->link; return array( 'logged' => $logged, 'customerName' => $customerName, 'logout_url' => $link->getPageLink('index', true, null, 'mylogout'), 'my_account_url' => $link->getPageLink('my-account', true), ); } Link to comment Share on other sites More sharing options...
0 [email protected] Posted August 17, 2018 Author Share Posted August 17, 2018 o Panie dzięki Ci zaiste, za szybką i bezbłędną odpowiedź, com się tego oszukał, jeszcze raz serdeczne dzięki Link to comment Share on other sites More sharing options...
Question
[email protected]
szukam wszędzie, znaleźć nie mogę,
chcę zrobić żeby użytkownik po zalogowaniu, w prawym górnym rogu widział tylko swoje imię,
jak jest: wyloguj się, imię , nazwisko
jak chce: wyloguj się, imię
znalazłem jakieś wskazówki do ps 1,6 i 1,5 ale wychodzi na to że 1,7 się z nimi nie pokrywa prawie w ogóle
gdzież to mam zmienić żeby było dobrze?
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now