I tried to create a custom php function inside featured controller, but I kept getting function not found in template featured.
Code I used:
Code: Select all
public function getProductById($product_id) {
$this->load->model('catalog/product');
$product_info = $this->model_catalog_product->getProduct($product_id);
return $product_info;
}