Voucher CHF 50.00
Give the gift of mobility & joy - with a voucher from Rent a Bike Willisau
Whether it's a sporty day trip, a practical long-term rental, a good second-hand bike or useful accessories - with our voucher you're always on the right track.
The voucher can be redeemed flexibly and can be used for all offers at our location in Willisau. Ideal for anyone who likes to ride two wheels - or wants to become one.
Simply drop by or order conveniently here.
CHF 50.00
0
>
$(function(){
// update voucher quantities in view
if (typeof localStorage["rentabike_cart"] !== "undefined") {
let stCart = JSON.parse(localStorage["rentabike_cart"]);
if (stCart.hasOwnProperty("vouchers")) {
for (object_id in stCart.vouchers) {
if (stCart.vouchers[object_id].quantity > 0) {
$('.cvouchers__quantity[data-objectid="' + object_id + '"]').text(stCart.vouchers[object_id].quantity);
}
}
}
}
});