Hi core devs,
I am using trying to add some product info in cart lib by using the onACart_ProccessData() and the method is ACart::buildProductDetails
I also hook into storefront product page by using onControllerPagesProductProduct_UpdateData.
I pass the additional data by using $that->view->batchAssign( $this->data ); and using $that->processTemplate( 'pages/xxxx/xxxx.tpl' );
When i open the product page i get Unknown Error: AbanteCart core v.1.3.0 Call to a member function batchAssign() on null and Unknown Error: AbanteCart core v.1.3.0 Call to undefined method ACart::processTemplate()
I wonder if i missed anything in my code?
Thanks
just add condition with check
if($that->view){
$that->view->assign()....
Thanks abolabo. I will try it.