diff --git a/app/code/community/Magmodules/Channable/Helper/Data.php b/app/code/community/Magmodules/Channable/Helper/Data.php index b778d8c..920709f 100644 --- a/app/code/community/Magmodules/Channable/Helper/Data.php +++ b/app/code/community/Magmodules/Channable/Helper/Data.php @@ -653,14 +653,9 @@ public function getProductPrice($product, $config) default: $price = $this->processPrice($product, $product->getPrice(), $config); $finalPrice = $this->processPrice($product, $product->getFinalPrice(), $config); - $specialPrice = $this->processPrice($product, $product->getSpecialPrice(), $config); $minPrice = $this->processPrice($product, $product->getData('min_price'), $config); $maxPrice = $this->processPrice($product, $product->getData('max_price'), $config); - if ($specialPrice > 0 && $specialPrice < $finalPrice) { - $finalPrice = $specialPrice; - } - if ($finalPrice < $minPrice) { $minPrice = $finalPrice; } diff --git a/app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Source/Attribute/Abstract.php b/app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Source/Attribute/Abstract.php index f002e3f..420b700 100644 --- a/app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Source/Attribute/Abstract.php +++ b/app/code/community/Magmodules/Channable/Model/Adminhtml/System/Config/Source/Attribute/Abstract.php @@ -198,7 +198,7 @@ public function getExludeAttributes() */ public function getBackendTypes() { - return array('text', 'select', 'textarea', 'date', 'int', 'boolean', 'static', 'varchar', 'decimal'); + return array('text', 'select', 'textarea', 'date', 'datetime', 'int', 'boolean', 'static', 'varchar', 'decimal'); } /** diff --git a/app/code/community/Magmodules/Channable/etc/config.xml b/app/code/community/Magmodules/Channable/etc/config.xml index 780c88e..84a4d5f 100644 --- a/app/code/community/Magmodules/Channable/etc/config.xml +++ b/app/code/community/Magmodules/Channable/etc/config.xml @@ -21,7 +21,7 @@ - 1.6.9 + 1.6.10