আপনি এর মধ্যে কনফিগারযোগ্য পণ্য এবং কোডের জন্য আলাদা আলাদা প্রাইস ফাইল যুক্ত করতে পারেন।
catalog_product_prices.xml
কোড যুক্ত করুন
<?xml version="1.0"?>
<layout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/layout_generic.xsd">
<referenceBlock name="render.product.prices">
<arguments>
<argument name="default" xsi:type="array">
<item name="prices" xsi:type="array">
<item name="final_price" xsi:type="array">
<item name="render_class" xsi:type="string">Vendor\Module\Pricing\Render\FinalPriceBox</item>
<item name="render_template" xsi:type="string">Vendor_Module::product/price/final_price.phtml</item>
</item>
</item>
</argument>
<argument name="configurable" xsi:type="array">
<item name="prices" xsi:type="array">
<item name="final_price" xsi:type="array">
<item name="render_class" xsi:type="string">Magento\ConfigurableProduct\Pricing\Render\FinalPriceBox</item>
<item name="render_template" xsi:type="string">Vendor_Module::product/price/final_price_configurable.phtml</item>
</item>
</item>
</argument>
</arguments>
</referenceBlock>
</layout>
এটি কনফিগারযোগ্য পণ্য হিসাবে এটি দ্বারা getFinalPrice()
এবং এটি পরীক্ষা করা সম্ভব নয় getSpecialPrice()
।
কনফিগারযোগ্য পণ্যের জন্য নীচে কোড যুক্ত করুন।
$priceModel = $block->getPriceType('regular_price');
$finalPriceModel = $block->getPriceType('final_price');
<?php if($finalPriceModel->getAmount() < $priceModel->getAmount()) : ?>
<span class="old-price sly-old-price no-display config-old" style="text-decoration: line-through;">
<?= $block->renderAmount($priceModel->getAmount(), [
'price_id' => $block->getPriceId('old-price-' . $idSuffix),
'price_type' => 'oldPrice',
'include_container' => true,
'skip_adjustments' => true
]); ?>
</span>
<?php
$array = (array)$priceModel->getAmount();
$prefix = chr(0).'*'.chr(0);
$price = $array[$prefix.'amount'];
$array = (array)$finalPriceModel->getAmount();
$prefix = chr(0).'*'.chr(0);
$finalPrice = $array[$prefix.'amount'];
$percentage = 100 - round(($finalPrice / $price)*100);
echo "<span class='percent-amt'>- ".$percentage."%</span>";
?>
<?php endif; ?>
দ্রষ্টব্য: আপনি ফাইল পরিবর্তন করে সরাসরি এটি পেতে পারেন app\design\frontend\Vendor\theme\Magento_Catalog\templates\product\price\final_price.phtml
, আপনাকে কেবল কনফিগারযোগ্য পণ্যের জন্য শর্ত রাখতে হবে
তালিকা পৃষ্ঠাতে প্রদর্শিত হবে