patriciosoto Posted April 8, 2015 Share Posted April 8, 2015 Hi i need the following feature; the customers at the moment of checkout pay the total of products without shipping cost, for example the price for a shirts its 25 usd and shipping 5 usd, i need the customer just pay 25 usd. please anyone can help me please Link to comment Share on other sites More sharing options...
PascalVG Posted April 9, 2015 Share Posted April 9, 2015 Hi Patricio, You can either - change the carrier to (always) give free shipping, or, if you want, only free shipping above a special order total, or free shipping above a special order weight or so, - or you can create a cart rule that gives free shipping, again under special conditions if you want) Can you tell some more when exactly you want to give free shipping? Always, or are there special conditions? Or only for a special period, or for a special customer group etc. Please elaborate a little. pascal. Link to comment Share on other sites More sharing options...
patriciosoto Posted April 10, 2015 Author Share Posted April 10, 2015 Thanks for you respond i need Is that if you can show the amount of shipping but that is not added to the final value Link to comment Share on other sites More sharing options...
PascalVG Posted April 11, 2015 Share Posted April 11, 2015 So, where do you still want to show the shipping costs exactly, (and why do you want to show it if you do't charge it...)? Link to comment Share on other sites More sharing options...
patriciosoto Posted April 11, 2015 Author Share Posted April 11, 2015 Because the customer will Pay the shipping at the moment of recibe their products Link to comment Share on other sites More sharing options...
PascalVG Posted April 11, 2015 Share Posted April 11, 2015 Ah, well ok, try this: edit file : themes/default-bootstrap/order-payment.tpl (Make backup!!) Try to find this piece of code: (sample from PS 1.6.0.14): (Maybe search the page (Win: Ctrl-F/Mac: Cmd-R) for "total_price" ) You will find 2 blocks of code: First one (for when price is 'including taxes') <tr class="cart_total_price"> <td colspan="4" class="total_price_container text-right"><span>{l s='Total (without shipping)'}</span></td> <td colspan="2" class="price" id="total_price_container"> <span id="total_price" data-selenium-total-price="{$total_price-$shippingCost}">{displayPrice price=$total_price-$shippingCost}</span> </td> </tr> Add the red code. (if your version doesn't have data-selenium-total-price="{$total_price-$shippingCost}" then just ignore that part) if you want, you can change the "Total" text -> "Total (without shipping)", that's up to you. Search for "total_price" again for the 2nd piece of code: <td colspan="{if !$voucherAllowed}4{else}2{/if}" class="text-right total_price_container"> <span>{l s='Total (without shipping)'}</span> </td> <td colspan="2" class="price total_price_container" id="total_price_container"> <span id="total_price" data-selenium-total-price="{$total_price_without_tax-$shippingCostTaxExc}">{displayPrice price=$total_price_without_tax-$shippingCostTaxExc}</span> </td> Again, if you want, you can change the "Total" text -> "Total (without shipping)", that's up to you. I think that's it. Hope this helps, pascal Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now