Dear Fabius,
Firstly, in file your_site/plugins/system/plg_sj_hk_ajax_minicart_pro/plg_sj_hk_ajax_minicart_pro.php
Please replace code:
$_price .= $currencyHelper->format($price->price_value,$price->price_currency_id);
by:
$_price .= $currencyHelper->format($price->price_value_with_tax,$price->price_currency_id);
Then, you can go to file your_site/modules/mod_sj_hk_minicart_pro/core/helper.php and find code:
$_price .= $currencyHelper->format($price->price_value,$price->price_currency_id);
=> Edit to:
$_price .= $currencyHelper->format($price->price_value_with_tax,$price->price_currency_id);
And find:
foreach($products as $product){
$Productclass->addAlias($product);
$config = hikashop_config();
$pathway_sef_name = $config->get('pathway_sef_name','category_pathway');
$category_pathway = JRequest::getInt($pathway_sef_name,0);
$product->id = $product->product_id;
$image = self::_getProductImage($product->product_id);
$product->title = $product->product_name;
$product->description = self::_cleanText($product->product_description);
$product->_image = $image ? $image : '';
$product->link = hikashop_completeLink('product&task=show&cid='.$product->product_id.'&name='.$product->alias.$url_itemid.$category_pathway);
$product->_price = self::_processPrice($product);
}
return $_cart;
=> Edit to:
foreach($products as $i=> $product){
$Productclass->addAlias($product);
$config = hikashop_config();
$pathway_sef_name = $config->get('pathway_sef_name','category_pathway');
$category_pathway = JRequest::getInt($pathway_sef_name,0);
$product->id = $product->product_id;
$image = self::_getProductImage($product->product_id);
$product->title = $product->product_name;
$product->description = self::_cleanText($product->product_description);
$product->_image = $image ? $image : '';
$product->link = hikashop_completeLink('product&task=show&cid='.$product->product_id.'&name='.$product->alias.$url_itemid.$category_pathway);
$product->_price = self::_processPrice($product);
if($products[$i]->cart_product_quantity <= 0){
unset($products[$i]);
}
}
$_cart->products = $products;
return $_cart;
Thanks & regards!