Hi,
I tried a lot of things but I cant solve my problem.
I want to simply add a new element (for example a text label) in booking view page like this:
I tried this code but is not woking:
add_filter(
'hivepress/v1/templates/booking_view_page',
function ($args) {
return hivepress()->helper->merge_trees(
$args,
[
'blocks' => [
'page_content' => [
'blocks' => [
'booking_details_primary' => [
'blocks' => [
'new_element' => [
'label' => 'test label',
'type' => 'text',
'attributes' => [
'id' => 'booking_details_primary',
],
],
],
],
],
]
],
],
);
},
1000
);
Thanks in advance!
Emilio