Every time i set a radio option of a menu as default value at the admin panel it doesn't save it in the database !!! Is there a solution ?
I tried to inspect the element with firefox dev tools and i get this when i have the default value of the menu item option checked and i can see this :
<input name="menu_options[1][default_value_id]" value="257" type="radio">
I guess that it should be:
<input name="menu_options[1][default_value_id]" value="257" checked ="" type="radio">
So when i click on save button doesn't save the default value as checked in the database. :(