Jump to content

visualizzare nome utente loggato nel FO


Recommended Posts

Vorrei visualizzare il testo accedi vicino l'icona di accesso account, e il nome dell'utente nella stessa posizione quando è loggato.

Uso un tema commerciale, ma il modulo attivo è nativo di prestashop : "link acesso cliente".

Nel modulo ps_customersignin, nel php è presente questo codice

public function getWidgetVariables($hookName, array $configuration)
    {
        $logged = $this->context->customer->isLogged();

        if ($logged) {
            $customerName = $this->getTranslator()->trans(
                '%firstname% %lastname%',
                array(
                    '%firstname%' => $this->context->customer->firstname,
                    '%lastname%' => $this->context->customer->lastname,
                ),
                'Modules.Customersignin.Admin'
            );
        } else {
            $customerName = '';
        }

Non dovrebbe abilitare proprio questa funzione?

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