Massimo333 Posted September 21, 2020 Share Posted September 21, 2020 Ho bisogno di aggiungere del CSS per gli utenti loggati, ma su prestashop nel body degli utenti loggati non c'è nessuna classe particolare per richiamarli: come posso richiamare gli utenti loggati su prestashop? P:S Ho provato anche ad usare il seguente codice per vedere se riuscivo a "beccare" tramite jQuery gli utenti loggati, ma non mi funziona: jQuery('document').ready(function() { if ($this->context->customer->isLogged()) { echo "Logged In"; // Do something here } else { echo "Not Logged In"; // Do something here } }); Link to comment Share on other sites More sharing options...
fedesib Posted October 1, 2020 Share Posted October 1, 2020 Ciao, non dici che versione di PS stai usando. Supponendo che tu stia usando la 1.7, il codice if/else che hai scritto funziona se sei in un file PHP (controller o modulo) ma non in un file js. Se sei in un template (.tpl) puoi usare questo: {if $customer.is_logged} {l s='Logged In' mod=''} {else} {l s='Not Logged In' mod=''} {/if} Buon pomeriggio, Federica Link to comment Share on other sites More sharing options...
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