19 lines
788 B
Smarty
Raw Normal View History

2017-09-12 10:48:51 +02:00
{*
* TNT OFFICIAL MODULE FOR PRESTASHOP
*
* @author GFI Informatique <www.gfi.fr>
* @copyright 2016 GFI Informatique, 2016 TNT
* @license https://opensource.org/licenses/MIT MIT License
*}
<script type="text/javascript">
var strjQSelectorInputRadioCoreTNT = 'input:radio[value="' + window.TNTOfficiel.carrier.id + ',"].delivery_option_radio';
var strjQSelectorInputRadioCoreAll = 'input:radio.delivery_option_radio';
var strjQSelectorInputRadioVirtTNT = 'input:radio.tnt_carrier_radio';
$(document).ready(function () {
// Hide the Prestashop Core TNTOfficiel Carrier Bloc (show only carriers added by the hook extraCarrier).
$(strjQSelectorInputRadioCoreTNT).parents('.delivery_option').children().hide();
});
</script>