None of our products require shipping, but they do require an address. Following the guide to set shipping to zero for all products, the "Calculate Shipping/Tax" button remains on the cart.
Since clicking the button has no effect, we'd like to hide the button.
Following an older forum post, it appears there used to be a way to hook into the cart shown event
The basic pattern is the above link, as well as a few other posts, is to use hook into the e-junkie cart:
function EJEJC_config() {
EJEJC_POSTCALL=true
}
function EJEJC_shown() {
// do stuff
}
After a bit of testing, it appears these entry points are no longer provided. Is there a new method of wiring up to the cart shown event?