Jump to content

Commenti in custom Product Tab


Recommended Posts

Ciao a tutti,

Vorrei visualizzare l'elenco dei commenti del modulo standard "productcomments" dentro un product tab custom creato da me.

Nel tab custom che ho creato faccio

public function hookDisplayProductExtraContent($params)
{
    $module = Module::getInstanceByName('productcomments');
    
    $contenuto = Hook::coreRenderWidget($module, 'hookDisplayFooterProduct', array());

    $array = array();
    $array[] = (new PrestaShop\PrestaShop\Core\Product\ProductExtraContent())
        ->setTitle('Comments')
        ->setContent($contenuto);

    return $array;
}

Il tab viene creato, purtroppo però nel contenuto non viene visualizzato niente.. qualcosa ha una soluzione ?

Edited by webjuice (see edit history)
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...