AH, ok. That seems to have corrected my error problem.
Are there methods for *writing* to the cart? I need to set the shipping address invisibly based on the pickup location they choose from a dropdown menu. They’ll choose a pickup location by name, but my tax plugin needs to set the shipping address using some hard-coded values I’ve set up in my plugin.
Of course, I can’t *write* to: $this->core->cart->customer_info(“shipping_address”)
My alternate option was to use some jquery to append some hidden form values to the HTML on the client side so they are submitted invisibly with the shopping cart (pre-checkout) form. But I’d like to be able to do all of it inside my plugin instead…