Estimated Shipping on Cart , Basket

Does anyone know of a way to always display the “estimated shipping” box - default configuration requires you to click on the “estimated shipping” link - but I would like it to just appear.



Thanks.

This is what I did:







I did this as much as I could with the hooks feature, but unfortunately about the only thing that worked was my style sheet. Oh well.



Add to your skins/your-skin/customer/styles.css


.estimation-popup-box {
margin:0 4px 0 0;
}
.estimation-popup-box p{
text-align:center;
}
.estimation-box {
background-color:#F8F8F8;
border:1px solid #DADADA;
margin:0;
padding:11px;
width:312px;
text-align:center;
}




Then in skins/your-skin/customer/views/checkout/components/shipping_estimation.tpl



Comment out or remove:


{if $location != "sidebox"}

{include file="buttons/button.tpl" but_role="text" but_text=$lang.estimate_shipping_cost but_id="sw_est_box`$id_suffix`" but_meta="cm-combination`$class_suffix`"}

{/if}




Then Change:


Wow, Brandon!



Thank you so much for taking the time to post those instructions.



I will post back when I test on my own setup.



Thanks again.