我在Joomla中修改了我的开源购物车,但我无法为2条信息插入DIV。
我的购物车在前端看起来像这样:
DININDKØBSKURV
1 x SALE rund gul hvid (数量x产品名称)
Pris 10,00 (产品价格)
Ialt ex moms DKK:10,00(总价)
我需要在
上添加div“1 x SALE rund gul hvid”= div class =“mod_cart_product_name”id =“mod_cart_product_name”
和
“Pris 10,00”= div class =“mod_cart_productprice”id =“mod_cart_productprice”
由于ELSE和IF代码,我不能自己动手: - )
我已经提取了类似的代码:
case 'extended':
$output = '<div class="mod_cart_products" id="mod_cart_products">';
if ($count)
{
$cartTotalProduct = $idx;
for($i = 0; $i < $idx; $i ++)
{
$carthelper = new rsCarthelper();
if($carthelper->rs_multi_array_key_exists('giftcard_id',$cart [$i]) && $cart [$i] ['giftcard_id'])
{
$giftcardData = $producthelper->getGiftcardData($cart [$i] ['giftcard_id']);
$name = $giftcardData->giftcard_name;
}
else
{
$product_detail = $producthelper->getProductById ( $cart [$i] ['product_id'] );
$name = $product_detail->product_name;
}
$output .= $cart [$i] ['quantity'] . " x " . $name . "<br />";
if (! DEFAULT_QUOTATION_MODE || (DEFAULT_QUOTATION_MODE && SHOW_QUOTATION_PRICE))
{
if ($show_with_vat)
{
$output .= JText::_('COM_REDSHOP_PRICE' ) . " " . $producthelper->getProductFormattedPrice ( $cart [$i] ['product_price'], true ) . "<br />";
}
else
{
$output .= JText::_('COM_REDSHOP_PRICE' ) . " " . $producthelper->getProductFormattedPrice ( $cart [$i] ['product_price_excl_vat'], true ) . "<br />";
}
}
}
}
$output .='</div>';