Magento get $product->getFinalPrice(); - magento

I am having issue in magento..
On my product Page when I try
$product->getFinalPrice();
it shows discounted Price correctly ($812)..
but when order is placed, Instead of this price, I get some other wrong price(411) ( I haven;t figured out what Price is that because I haven't set that price anywhere while adding this prodcut)
so my question is,
How can I send Correct Price ($product->getFinalPrice();) on Cart page..
On cart page, price is shown with
$item->getPrice() which comes from qouted items
anyway I can access $product->getFinalPrice(); and replace $item->getPrice(). with $product->getFinalPrice(); on cart page ???
can anybody guide me why prices are shown so wrong??

Check is there any other "Shopping Cart Price Rule" or "coupons" are being applied...

Related

Volusion Soft Add To Cart - Show cart Total instead of Subtotal

In the Volusion shopping carts "soft add to cart" feature, which is turned on in product options with "Enable Add To Cart Popup", the popup shows the "Subtotal" of products currently in the cart.
The issue is this Subtotal does not include quantity discounts and therefore shows customers a higher price than the actual Subtotal after discounts are applied.
For that reason, we would like to display the cart Total, which includes any quantity discounts applied.
The problem is, I cannot find a place where this can be done in the HTML we have access to and if I were to find it, I'm not sure of the proper Volusion syntax to use to call up the Total instead of the Subtotal.
Thanks!
I had a different issue, but the same problem (soft add to cart did not display the proper info).
In my case, we allow engraving on our products, for an additional charge, and when selected this option was not displayed in the popup cart. As a result, customers were not sure if they chose it or not.
My solution was to add a Shopping Cart block to the page, as part of the template, using jQuery.
If you call http://yourUrl/AjaxCart.asp you'll see the discount info you need in the JSON data, as well as the line items in the order.

use static price at place of original price in Magento

In Magento,I have created an attribute for product price as my_price_attribute.
If cusomer who logged in belongs to perticular group,then I want to show my_price_attribute value at place of original price and use my_price_attribute value to cart else i will have to dislay both prices but use original price to cart.
How can i do this?
Happy, Magento have Provide own feature for your type requirement.
Use Price Group Price ,Here you can set according to customer group

In Magento how to get the regular price of each product that include tax in the shopping cart?

I use this line to get the regular price of the product item in the shopping cart,
$this->helper('checkout')->formatPrice($_item->getProduct()->getPrice());
But I actually want to get the regular price include the tax, any idea how I can get it?
Something like this?
Mage::helper('tax')->getPrice($_item->getProduct(), $_item->getProduct()->getPrice());
See also Magento get price including tax in a none-template file

Add tier price to upsell block

I searched high and low on google for this answer. I need to display the tier prices for the products that show on the upsell block in the product page.
I tried this:
<?php echo $this->getTierPriceHtml() ?>
However, it echos the tier price for the main product on the page instead of the tier prices for the products in the upsell block.
Does anyone know a work around here?
You're almost done
$this->getTierPriceHtml($_link);
Indeed, this method accept a parameter for the $product to show, if you don't set it it will show the price for Mage::registry('current_product') aka the main product, just pass the upsold product as argument and you're ok.

Magento display grouped products special price

I am trying to figure out how I display the special price of a grouped product on the catalog page.
For example if i have 5 simple products attatched to my grouped product, how do I display the RRP for those products as well as the special price, on the catalog page?
At the moment it will display on the product page only and magento will fetch the lowest price it can find to display on the catalog page.
Any help is greatly appreciate!
If you're using the default theme, you'll have to modify:
app/design/frontend/base/default/template/catalog/product/list.phtml
You can add the prices you'll need like this by passing through the product:
<?php echo $this->getPriceHtml($_product, true) ?>

Resources