Hello,

I know this has been done before, but I cannot seem to get it to work correctly for us. Basically, I want to allow "always free shipping" products the option to ship with FedEx express if the customer wants to pay the premium.

I have tried modifying the fedexwebservices php file in a manner similar to what I have seen in other threads (like this one)

like so:
Code:
//    if (MODULE_SHIPPING_FEDEX_WEB_SERVICES_FREE_SHIPPING == 'true' || zen_get_shipping_enabled($this->code)) {
    	if (extension_loaded('soap')) {
      $this->enabled = ((MODULE_SHIPPING_FEDEX_WEB_SERVICES_STATUS == 'true') ? true : false);
      }
//    }
I thought this worked. It made the fedex options appear in the cart estimator and in on the checkout page, but it wasn't working fully. If you select one of the fedex options, it changes the order total, but still says that shipping is $0.00. So if you select overnight shipping for $20.00 It would look like:

Sub-Total: $10.00
Free Shipping: $0.00
Total: $30.00

then if you complete the checkout process, it charges just $10.00


I feel like I must be missing something, hopefully something simple. php is still pretty much beyond me. The "always" part of the "always free shipping" is more powerful than I.

Thank you in advance for any help or advice! (This is my first post, because every other question I had was answered by lurking, so you all have already helped me a bunch!)