Jump to content
  • 0

1.7 po zalogowaniu użytkownik widzi samo imię


gotrekwh@gmail.com

Question

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

  • 1

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

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...