Copy the wpsc-shopping_cart_page.php file into your current theme folder (you can do this through the admin pages) and then edit it to remove the shipping calculator.
Yes, I have done that – I’ve edited small things in many of the wp e-commerce files. But I’m not sure what to remove in the coding for the wpsc-shopping_cart_page.php. I’d like to hide shipping altogether – though I know it still has to be used to calculate for PayPal.
Hi,
I have the exact same question. I do not need a shipping calculator. I have one flat rate. Period.
Also, I agree. The shipping calculator is confusing for people. Making the check out process frustrating for users.
In any case, I hope you can answer Bradley’s question. I see it have been over a week since a reply was given.
Also, the advice to download the php file is great, but you are assuming we all know PHP. A bit more detail on “what” to remove and “where” to find it would be helpful.
Update: I have copied the php file you mentioned. I have done half a dozen edits to it to see if the “calculate” can be removed. But NOTHING is being removed. I can hack the code to pieces and nothing changes.
Any thoughts or solutions???
I figured it out. Find the php code that starts like this:
<?php if(wpsc_uses_shipping()): ?>
<p class="wpsc_cost_before"></p>
<?php endif; ?>
then scroll down and find the code that looks like this
`<?php
$wpec_taxes_controller = new wpec_taxes_controller();
if($wpec_taxes_controller->wpec_taxes_isenabled()):
?>`
Then delete all the code between these (be sure to keep the above code, just delete all the code between them.)
In my code editor, I deleted from line 231 thru 400.
I haven’t tested the actual cart yet, but the shipping calculator is now gone. Yea.