Hi,
I would like to add text here, in the list description:
I think it must to show a field description.
How could I do it?
Thanks
Hi,
I would like to add text here, in the list description:
I think it must to show a field description.
How could I do it?
Thanks
Hi,
Please use these PHP snippets:
For attributes:
add_filter(
'hivepress/v1/templates/listing_view_page',
function( $template ) {
return hivepress()->helper->merge_trees(
$template,
[
'blocks' => [
'page_content' => [
'blocks' => [
'attribute_description' => [
'type' => 'content',
'content' => '<p>Your content here</p>',
'_order' => 0,
],
],
],
],
]
);
},
1000
);
For description:
add_filter(
'hivepress/v1/templates/listing_view_page',
function( $template ) {
return hivepress()->helper->merge_trees(
$template,
[
'blocks' => [
'page_content' => [
'blocks' => [
'custom_text_above_description' => [
'type' => 'content',
'content' => '<p>Your content here</p>',
'_order' => 55,
],
],
],
],
]
);
},
1000
);
Please note that it can require further customization.
thanks a lot
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.