Magento table rate shipping method only for price - magento

I am curently using Magento 1.9.1 and i want to set up a table rate for shipping.
In the shipping methods i can see only 3 conditions:
Weight vs. Destination
Price vs Destination
and # of Items vs. Destination
My questions is - How i make it count only the price. They are delivered all from england but there is only change of the shipping price on different purchase price.
For example, for purchases:
for store purchases for or less 25 pounds the Shipping fee is 3 pounds.
for store purchases for 50 pounds the Shipping fee is 5 pounds.
for store purchases for 75 pounds the Shipping fee is 7 pounds.
for store purchases for 100 pounds the Shipping fee is 9 pounds.
for store purchases for 150 pounds the Shipping fee is 12 pounds.
Thanks in advance!

Just do it Price vs Destination and only use table rates as you normally would. If necessary restrict countries that can be shipped to in your configuration.

Use Amasty Table Rate Shipping extension.

Related

Additional Shipping Fee on COD for Specific Country Magento 2

I've a store setup on Magento 2.2.3
I use two payment methods: COD, Credit Card Payment
There are 2 allowed countries (for example A and B)
For Country:A shipping is flat (i.e. 10 USD)
For Country:B shipping is calculated according to weight table
What I want: For Country:A when user selects COD as payment method, additional shipping charges (5 USD) should be charged (i.e. 10 USD + 5 USD = 15 USD)
How do I achieve this in Magento 2.2.3 so that I could set additional shipping charges from admin and User is shown additional charges at front?
Kindly tell me if there's any free existing module/extension available for this.

Magento Fedex currency

Conditions:
We need the default display currency in our Magento site be USD, and the Paypal (base currency) also needed to be USD (because we need customers to pay in USD).
Our Fedex a/c is opened in Singapore it turns out that the shipping amount is billed in Singapore Dollar.
Here is the problem:
If the product is sold at USD 200 and actual Fedex shipping amount is (Singapore Dollar)SGD 100, Magento will treat this shipping amount as USD 100 making the final total amount to USD 300 while it should be acutally around USD 278.
I tried to change the base currency in Magento to SGD and everything were calculated correctly (into USD). But the problem is this makes our customers make all payments in SGD by Paypal/credit card. We want our customers to pay USD.
Magento ver. 1.7.0.2
Below module can solve your problem.
https://www.magentocommerce.com/magento-connect/store-currency-payment-checkout.html
Use SGD as base currency and USD as Default Display Currency on store. This module enable charge user with the currency shown in the cart i.e USD.

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.

Total amount tax for a product

Is there a way to show the tax amount for a product. I want to show the tax amount on the product page.
For example:
The price is € 119 Euro and the the taxrate is 19%. Then a want to show the tax amount € 19 euro.
Hopefully someone can help me with this.
Gr,
Lex
yes it is possible but before you can do that you need to know the user shipping and billing data as tax calculations are based either on billing or shipping (country, region, zip) information and can be different for different locations

Flat price for each currency in Virtuemart

Currently Virtuemart uses a converter module: convertECB.php.
Such module fetches exchange rates from a server and convert one currency into another.
Is it possible to set a fixed prices for each product and currency?
ie we have USD, EUR and GBP and we'd like prices as follows:
Product 1: 15 USD
Product 1: 10 GBP
Product 1: 12 EUR
Product 2: 29 USD
Product 2: 20 GBP
Product 2: 23 EUR
You will have to hack the VM core to achieve what you want to do. The converter is used so that the price can be calculated from a single price field in the VM product info database table. If you are not going to calculate the price based on exchange rates, then you have to have additional price fields where you can enter the price of each currency you want to accept.
If you just want to have even number prices, then you can hack convertECB.php to round the price before dispalying it.

Resources