Is there a bug in Magento 1.8.0.0 in the catalog pricing rules. I'm trying to get a data feed with the proper pricing but 1.8.0.0 spits out nothing whilst 1.8.1.0 gives me what I want.
$store_id = 1; // Use the default store
$discounted_price = Mage::getResourceModel('catalogrule/rule')->getRulePrice(
Mage::app()->getLocale()->storeTimeStamp($store_id),
Mage::app()->getStore($store_id)->getWebsiteId(),
Mage::getSingleton('customer/session')->getCustomerGroupId(),
$_product->getId());
// if the product isn't discounted then default back to the original price
echo $discounted_price;`
Unfortunately my development server is on 1.8.1.0 and my live site is running 1.8.0.0 can anyone suggest a fix. I should add the frontend prices and promotional prices are all being shown correctly, so the data is there somewhere, now at a loss as to where to retrieve it from.
It is a bug in Magento CE 1.8.0.0 and was fixed in 1.8.1.0
If you want only the fix instead of upgrading your live site, pls use this fix :
https://bitbucket.org/gferon/magento-1.8-catalogrule-fix/overview
Here's one more fix for applying existing rules on products.
http://www.techytalk.info/catalog-price-rules-not-being-applied-after-product-save-magento-ce-1-8-0-0/
Hope it helps you
Related
When some users place an order on our website, they do not see the discount price; the original price shows when we place the order ourselves.
There is no issue for testing, we have checked in a lot of pc and mobile, I have flushed the command of Reindex and also flush cache.only facing issue by customer please suggest me .
magento 2.1.1
My task was to change existing products in shop with new one, so all that i have changed is NAME,
SKU, and URL key in GENERAL section and description field in PRODUCT DETAILS.
After i have done that, items are successfully edited in backend but they dissapear from frontend.
The only way to get to them in frontend is to enter complete address of that specific product in the address bar.
I have tried everything that i could found on the forum up to this date, and it didn't work for me.
Tips like reindexing, status - enabled, availability - in stock...
If someone has an idea, please, share it with me.
Thank you all.
You can try the below things:
1. Check the product quantity,in stock and enable status and catalog visibility.
2. Re indexing
3. delete the entry from url rewrite management for your product
4. rename the "var" folder
Solution for my problem was in associated products section. I had configurable product, but i didn't had associated (simple product) for that configurable product. So i had to create some simple product for related configurable, and then they appeared in frontend.
Thank you all.
I got a problem with a Magento 1.8 store. The shop has installed OneStepCheckout. Inside of the extension it can be set two fields
-> "how did you hear about us"
-> "Comments"
Strange thing is everytime "paypal" is selected both values do not get send to magento. They do not show up in backend in order details.
Does someone has the same problem? and how to fix it?
i'm using magento 1.7.2 CE and m2epro 6.0.8 , updated for 6.1.4 and have got troubles with Create Orders from Ebay
1 Problem:
Magento Order was not created.
Reason: The requested Payment Method is not available.
Found FAQ Hint, that says :
You should enable payment method “M2E Pro Payment”
in System→Configuration→Payment Methods
i've checked this setting, it IS enabled, don't know what else i can do.
Payments done on Ebay are PayPal, there were no changes of setting after update
however i can confirm the order manually, but then i have another Problem with Double VAT calculation, that doesn't appear on automatic order creation.
FAQ says, Double VAT are only created if Catalog Prices are set Excluding VAT, but my Magento manages Prices including VAT, so dont how else to avoid double VAT
Thanks in advance
I had the same problem today. In my case it was caused by the module RicoNeitzel_PaymentFilter. I had to activate the "M2E Pro Payment" - method for all customer groups.
This is a bug in Magento 1.4.2.0 (bug also present in 1.5.0.0-rc2). When trying to save a configurable product in a store view other than the default, the "Name" property is not properly saved. The product name for the default store automatically jumps back after saving the configurable product. All other configurable product properties are saved correctly.
This problem is discussed in:
Magento's forum
Magento's Bug Tracking System
I have developed a few extensions for Magento, and tried to find and correct the bug, but unfortunately this issue is beyond my current Magento capabilities.
Any ideas?
why don't you try a setName() on $item during the add to cart event? (we are talking about an $item of the $quote obj)
This issue is solved in Magento 1.5.1.0; for those who don't want to upgrade, a working solution is presented here: http://www.magentocommerce.com/boards/viewthread/215467/P30/.