सुपर विशेषता मूल्य को बदलने के लिए कृपया नीचे दिए गए चरणों का पालन करें
पहले पर्यवेक्षकों "कैटलॉग_प्रोडक्ट_गेट_फिनाल_प्राइस" का उपयोग करें। पर्यवेक्षकों को इस तरह बनाएं:
अपना मॉड्यूल config.xml खोलें और नीचे दिए गए कोड का उपयोग करें:
<events>
<catalog_product_get_final_price>
<observers>
<Setblue_Banner_Model_Observer>
<type>singleton</type>
<class>Setblue_Banner_Model_Observer</class>
<method>getFinalPrice</method>
</Setblue_Banner_Model_Observer>
</observers>
</catalog_product_get_final_price>
</events>
अब Observer.php फाइल को मॉडल में बनाएं और कोड के नीचे पास्ट करें
<?php
class Setblue_Banner_Model_Observer
{
public function getFinalPrice(Varien_Event_Observer $observer) {
$event = $observer->getEvent();
$product = $event->getProduct();
$qty = $event->getQty();
$selectedAttributes = array();
if ($product->getCustomOption('attributes')) {
Mage::log('yes-----', null, 'confPricing.log');
$selectedAttributes = unserialize($product->getCustomOption('attributes')->getValue());
}
if (sizeof($selectedAttributes)) return $this->getSimpleProductPrice($qty, $product);
}
public function getSimpleProductPrice($qty=null, $product)
{
$cfgId = $product->getId();
$product->getTypeInstance(true)
->setStoreFilter($product->getStore(), $product);
$attributes = $product->getTypeInstance(true)
->getConfigurableAttributes($product);
$selectedAttributes = array();
if ($product->getCustomOption('attributes')) {
$selectedAttributes = unserialize($product->getCustomOption('attributes')->getValue());
}
$db = Mage::getSingleton('core/resource')->getConnection('core_read');
$dbMeta = Mage::getSingleton('core/resource');
$sql = <<<SQL
SELECT main_table.entity_id FROM {$dbMeta->getTableName('catalog/product')} `main_table` INNER JOIN
{$dbMeta->getTableName('catalog/product_super_link')} `sl` ON sl.parent_id = {$cfgId}
SQL;
foreach($selectedAttributes as $attributeId => $optionId) {
$alias = "a{$attributeId}";
$sql .= ' INNER JOIN ' . $dbMeta->getTableName('catalog/product') . "_int" . " $alias ON $alias.entity_id = main_table.entity_id AND $alias.attribute_id = $attributeId AND $alias.value = $optionId AND $alias.entity_id = sl.product_id";
}
$id = $db->fetchOne($sql);
//Mage::log(Mage::getModel("catalog/product")->load($id)->getFinalPrice($qty), null, 'confPricing.log');
//return
$fp = Mage::getModel("catalog/product")->load($id)->getFinalPrice($qty);
return $product->setFinalPrice($fp);
}
}
?>
अब खुले एप्लिकेशन / डिज़ाइन / फ्रंटएंड / डिफ़ॉल्ट / yourtheme / टेम्पलेट / कैटलॉग / उत्पाद / दृश्य / प्रकार / विकल्प / configurable.phtml और फ़ाइल में कहीं भी नीचे कोड पेस्ट करें
<ul class="productIds" style="display:none;">
<?php
$configurableProduct = Mage::getModel('catalog/product')->load($_product->getId());
$childProducts = Mage::getModel('catalog/product_type_configurable')->getUsedProducts(null,$configurableProduct);
foreach($childProducts as $child) {
$_productObj = Mage::getModel('catalog/product')->load($child->getId());
?>
<li id='simple_<?php echo $child->getId(); ?>'><?php echo Mage::helper('core')->currency($_productObj->getFinalPrice()); ?></li>
<?php
}
?>
</ul>
अब खुले हुए js / varien / configurable.js और नीचे दिए गए के रूप में reloadPrice फ़ंक्शन को बदलें या आप इस फ़ंक्शन को विदाई से बदल सकते हैं
reloadPrice: function(){
if (this.config.disablePriceReload) {
return;
}
var price = 0;
var oldPrice = 0;
for(var i=this.settings.length-1;i>=0;i--){
var selected = this.settings[i].options[this.settings[i].selectedIndex];
if(selected.config){
price += parseFloat(selected.config.price);
oldPrice += parseFloat(selected.config.oldPrice);
}
}
/* Edit Code By Chandresh Rana*/
//optionsPrice.changePrice('config', {'price': price, 'oldPrice': oldPrice});
optionsPrice.reload();
var existingProducts = new Object();
for(var i=this.settings.length-1;i>=0;i--)
{
var selected = this.settings[i].options[this.settings[i].selectedIndex];
if(selected.config)
{
for(var iproducts=0;iproducts<selected.config.products.length;iproducts++)
{
var usedAsKey = selected.config.products[iproducts]+"";
if(existingProducts[usedAsKey]==undefined)
{
existingProducts[usedAsKey]=1;
}
else
{
existingProducts[usedAsKey]=existingProducts[usedAsKey]+1;
}
}
}
}
for (var keyValue in existingProducts)
{
for ( var keyValueInner in existingProducts)
{
if(Number(existingProducts[keyValueInner])<Number(existingProducts[keyValue]))
{
delete existingProducts[keyValueInner];
}
}
}
var sizeOfExistingProducts=0;
var currentSimpleProductId = "";
for ( var keyValue in existingProducts)
{
currentSimpleProductId = keyValue;
sizeOfExistingProducts=sizeOfExistingProducts+1
}
if(sizeOfExistingProducts==1)
{
if($('product-price-'+this.config.productId)){
$('product-price-'+this.config.productId).innerHTML = jQuery("#simple_"+currentSimpleProductId).html();
}
}
// End Code By Chandresh Rana
return price;
if($('product-price-'+this.config.productId)){
$('product-price-'+this.config.productId).innerHTML = price;
}
this.reloadOldPrice();
},
से लिया गया कोड: http://chandreshrana.blogspot.in/2016/03/set-simple-product-price-instead-of.html