Duyal Posted April 8, 2015 Share Posted April 8, 2015 Buenas, estoy intentando llevar a cabo unos cambios y estoy un poco bloqueado. En el carrito, he quitado la miniatura de la imagen, y quiero poner el nombre de la categoría del producto. He conseguido mostrar la url amigable con $product.category , pero no el nombre. Un saludo Link to comment Share on other sites More sharing options...
Duyal Posted April 8, 2015 Author Share Posted April 8, 2015 Solucionado. en FrontControler.php añadir: public static function getCategoryName($id){ $category = new Category ($id,Context::getContext()->language->id); return $category->name; } y donde en shopping-cart-product-line.tpl poner {FrontController::getCategoryName($product.id_category_default)} donde lo quieran mostrar Un saludete Link to comment Share on other sites More sharing options...
Recommended Posts