Hi
I found a developer on peopleperhour website who did it for me, I am not 100% sure what coding they did to get it work but I found this at the bottom of the footer.php file in the partials folder
<script>
$(document).ready(function(){
$('body').on('click', '.menu-options .radio label, .menu-options .checkbox label', function(){
if ($('#topping_price').length==0) {
$('input[name="menu_id"]').after('<input type="hidden" id="topping_price" name="topping_price" value="0.7"/>');
$('input[name="menu_id"]').after('<input type="hidden" id="se_price" name="se_price" value="1"/>');
}
var str = $(this).text();
if (str.indexOf('(13")') >= 0) {
$('#Extra_Toppings .checkbox input[type="checkbox"]').attr('price', '£0.80');
$('#Extra_Toppings .checkbox span.price').html('£0.80');
$('#topping_price').val('0.8');
$('#se_price').val('2.0');
$('#Stuffed_Edge_Options .radio input[type="radio"]').attr('price', '£2.00');
$('#Stuffed_Edge_Options .radio span.price').html('£2.00');
}
else if (str.indexOf('(15")') >= 0) {
$('#Extra_Toppings .checkbox input[type="checkbox"]').attr('price', '£1.50');
$('#Extra_Toppings .checkbox span.price').html('£1.50');
$('#topping_price').val('1.5');
$('#se_price').val('2.5');
$('#Stuffed_Edge_Options .radio input[type="radio"]').attr('price', '£2.50');
$('#Stuffed_Edge_Options .radio span.price').html('£2.50');
}
else if (str.indexOf('(20")') >= 0) {
$('#Extra_Toppings .checkbox input[type="checkbox"]').attr('price', '£2.00');
$('#Extra_Toppings .checkbox span.price').html('£2.00');
$('#topping_price').val('2.0');
$('#se_price').val('3.0');
$('#Stuffed_Edge_Options .radio input[type="radio"]').attr('price', '£3.00');
$('#Stuffed_Edge_Options .radio span.price').html('£3.00');
}
else if (str.indexOf('(22")') >= 0) {
$('#Extra_Toppings .checkbox input[type="checkbox"]').attr('price', '£2.00');
$('#Extra_Toppings .checkbox span.price').html('£2.00');
$('#topping_price').val('2.0');
$('#se_price').val('3.5');
$('#Stuffed_Edge_Options .radio input[type="radio"]').attr('price', '£3.50');
$('#Stuffed_Edge_Options .radio span.price').html('£3.50');
}
else if (str.indexOf('(10")') >= 0) {
$('#Extra_Toppings .checkbox input[type="checkbox"]').attr('price', '£0.70');
$('#Extra_Toppings .checkbox span.price').html('£0.70');
$('#topping_price').val('0.7');
$('#se_price').val('1.0');
$('#Stuffed_Edge_Options .radio input[type="radio"]').attr('price', '£1.00');
$('#Stuffed_Edge_Options .radio span.price').html('£1.00');
$('#Stuffed_Edge_Options .radio:eq(4)').hide();
}
});
});
</script>