- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
(function(){
// hide 5-pay for US
if(/us_en_store_view/.test(window.location.pathname)){
try{
if (/5pay/i.test(rs.pixp_promo)) {
// show 5 pay, select it, hide 3 pay
document.querySelectorAll('#fivepay .payment-plan-1.input-radio')[2].style.display = 'block';
document.querySelectorAll('#fivepay .payment-plan-1.input-radio')[1].style.display = 'none';
}
else {
document.querySelectorAll('#fivepay .payment-plan-1.input-radio')[2].style.display = 'none';
}
}
catch(e){}
}
// hide 3-pay for Hisp
if(/hispanic_store_view/.test(window.location.pathname)){
try{
document.querySelectorAll('#fivepay .payment-plan-1.input-radio')[1].style.display = 'none';
}
catch(e){}
}
})();