Hi Marnick,
If you have a little of PHP knowledge you could get the calculator fields which are saved in the WooCommerce cart session:
So for example if you write this code in your custom theme:
cart->get_cart();
foreach($items as $item => $values) {
if(!empty($values['simulator_id'])){
print_r($values['simulator_fields_data']);
}
}
?>
This simple piece of code will print the saved cart values of the calculator.
Of course you need some more work to rewrite this code for get the value and set values in your calculator fields.
Kind Regards,
Enrico
AT139