Hi,
One thing that is strange to me is that you want a date picker and then a time picker, but you don't want the time picker to be based on the date selected in the date picker but instead to be based on the current date.
If you want to base the time picker values on the current date, then I would recommend to create a new type of custom field via a plugin implementing the fields API of HikaShop:
www.hikashop.com/support/documentation/6...entation.html#fields
That way, in the code of the plugin you can extend from the single dropdown type and dynamically set the values you want based on the current date.
You can see an example of such plugin in the folder plugins/hikashop/datepicker_field/ in your website. That plugin adds the "advanced date picker (recommended)" type to the custom fields system.
Now if you want to based the values of the time picker based on the date selected in the date picker, you need to do it completely different. Instead, you'll have to add javascript code (you could do that in a view override of show_block_fields.php , via the menu Display>Views) in order to have an event listener on the "onchange" event of the input field of the date picker so that you can call your own javascript function to update the values in the dropdown for the time picker.