Tiered pricing not displaying - magento

I am trying to set up tiered pricing for particular customer groups.
I have set up the group, assigned a customer to it and created a tier price in the product.
When I login using the account I created, I do not see the tier price.
Is there any setting in the attribute Tier Price that I need to configure?
Thanks

Check that your tier price is lower than regular price.

This solved also the problem for Group Price. If you insert group price higher then standard price, Magento show always standard price.

For those of you are facing the issue - be aware that the tier price added to product in backend has to be entered as pr. unit price - and not the total price of the quantity of which you are adding the tier-price.
So if original price is 500$
And the tier price for 2 is 400.
You need to insert:
Quantity: 2 | Price: 200
And NOT Quantity: 2 | Price: 400.

Related

Display ONLY Tier Price based on Customer Group in Magento

I'm building a B2B site and I need to display the tier price matched to each customer's customer group rather than the default price of a product. I need this tier price to be displayed as the primary price of the product for the customer. Many of the customer groups' tier prices are higher than the default price.
Each Customer has a Customer Group to match. Customer Groups have different prices for each product.
Does anyone have a suggestion on how to pull this off?
We're on Magento 1.9 CE
THANKS
Magento will always show the user the loswest price by default, so I would suggest setting the 'standard' price to the product RRP, which (I imagine) will be higher than all tier prices and encourage the b2b customers to login to see their price.
Tier prices can set assigned by customer group. Take a look at Magmi for importing and managing the values really quickly from a csv. Note the column header should be the name of your group rather than its group ID.

Magento product quantity wise price increase

I want to create only one product in magento whose total price will be $50 more for any quantity less than 100 and $35 more for any quantity more than 100 while being added to cart.I have tried price rules but it seems to be not working.Please help me how do i create it.The product also includes additional parameters like tier pricing
These are the tier prices
You need to create a singled product and add tier pricing for it.
Magento knowledge base shows how to do it: http://www.magentocommerce.com/knowledge-base/entry/how-do-i-use-tier-pricing

How to divide all prices by lets say 3 for a Customer Group in Magento

I am currently showing retail prices in Magento.
I would like to show different prices for wholesale customer group and I would like to divide all prices by 3 to show for logged in users that are in the wholesale customer group.
Any ideas?
You can simply add price customer group wise for each products from magento backend
Go to product >> price tab
you will see Group Price option select your group in your case add price for wholesale group then add your other price for general users.
Ok here is how I did it.
I found this extension Price factor http://www.magentocommerce.com/magento-connect/price-factor.html which multiplies the price with any number you specify.
Then from the extension file /app/code/community/Psquared/PriceFactor/Model/Observer.php
I added some code
$customer = $observer->getEvent()->getCustomer();
//$customer_group_id=$customer->getCustomerGroupId();
$customer_group_id = Mage::getSingleton('customer/session')->getCustomerGroupId();
if ($customer_group_id!=2)
{
// code of the default if statements
}

adding price of the products in range

I have set up a shop on magento that works fine but my problem is that I want to be able to charge clients based on wight.For example
if someone chooses 6kg there should be a configured price range saying for 4-7 kg then price per kg is 2 hence total price to be 12usd or if someone enter 110.28 kg then there should be a price range defined which states that if the weight is 100-120 kg then each kg is 1.8 usd hence total price is 110.28*1.8 US
That is what i am looking for if there is a way magento can handle that please help me.
Assuming you are selling your product in 1kg units then you should be able to use tier pricing to create the above pricing structure. Your tier prices would look like:
qty = 4, price is $2
qty = 8, price is $y
...
qty = 100, price is $1.8
If you are selling in partial units (e.g. 110.28 kg) then you will need a customisation to work with per kg pricing. I'd look at commercial extensions, I'm sure there will be some available.

Magento customer group - price increase

This may sound bizarre - I need a customer group that when they login into magento they see a price increase.
The reason for it is the online price is going to be cheaper than the instore products. So I'm going to setup a user for the sales staff to login to so they can process the orders - but obviously we need to increase the prices.
Is there a way to do this, it basically just need to be something like 10% more.
Quickest solution might be an extension. Google search found this: http://www.webtexsoftware.com/customer-group-prices-magento-extension
Just make the default price the higher price. Then setup tier pricing for the lower price. Associate all the groups except your sales reps to the tier price.
In the end we decided to create a new store that had the 'instore prices'

Resources