magento how to check which delivery option is selected -
magento how to check which delivery option is selected -
i want display additional features when client selects appropriate shipping rate - illustration if select flat rate want set php or jquery flag
$flat_rate = true;
how that?
you can add together code in app/design/frontend/[theme]/default/template/checkout/onepage/shipping_method/available.phtml
<script> jquery(document).ready(function(){ jquery('[name="shipping_method"]').click(function(){ /*write code here, clicked button of shipping method checked or not*/ }); }); </script>
magento
Comments
Post a Comment