Ciao a tutti, spero possiate aiutarmi, ho letto il link dove spiega l modifica da fare per non far visualizzare il pulsante aggiungi al carrello agli utenti non registrati ma, il pulsante sparisce, come il prezzo ma anche dopo il login non lo vedo più, dove sbaglio ?
Il codice inserito è questo:
<?php
// check if user is logged in/registered.
// $user =& JFactory::getUser(); if( $user->id ){
$user = JFactory :: getUser ();
$status = $user -> guest ;
if( $status == 1 ){
echo "Per proseguire con gli acquisti, registrati." ;
}
else
{
// Add To Cart Button
//if (! VmConfig :: get ( 'use_as_catalog' , 0 ) and !empty( $this -> product -> prices )) {
echo $this -> loadTemplate ( 'addtocart' );
} // Add To Cart Button END
}
?>