At the moment it’s possible only via code snippets, I plan to add integration with Gutenberg in the near future (then all layouts will be visually editable). These code snippets should work:
add_filter(
'hivepress/v1/templates/listing_submit_category_page',
function( $template ) {
return HivePress\Helpers\merge_trees(
$template,
[
'blocks' => [
'page_container' => [
'blocks' => [
'page_content' => [
'blocks' => [
'listing_search_form' => [
'type' => 'content',
'content' => 'custom text here',
'_order' => 7,
],
],
],
],
],
],
]
);
}
);
add_filter(
'hivepress/v1/templates/listing_submit_details_page',
function( $template ) {
return HivePress\Helpers\merge_trees(
$template,
[
'blocks' => [
'page_container' => [
'blocks' => [
'page_content' => [
'blocks' => [
'listing_search_form' => [
'type' => 'content',
'content' => 'another custom text here',
'_order' => 7,
],
],
],
],
],
],
]
);
}
);