Kieran
November 6, 2025, 4:58pm
1
Hi Everyone.
I would like to edit the listing_submit_details_page, where users creating there listing, however i am unable to do so as it isn’t a WP page or post.
All i want to do is add a link to a ‘How to create a listing’ page as i have found some users are struggling.
Any advice on how to do this would be appreciated.
Many thanks
Kieran
Hi Kieran,
You can try this PHP snippet [please adjust the content to your needs] and guide How to add custom code snippets - HivePress Help Center
add_filter(
'hivepress/v1/templates/listing_submit_page',
function( $template ) {
return hivepress()->template->merge_blocks(
$template,
[
'page_content'=> [
'blocks' => [
'custom_block' => [
'type' => 'content',
'content' => 'How to create a listing — <a href="your_link_here" target="_blank">Read the guide</a>',
'_order' => 1,
],
],
],
]
);
},
1000);
Hope this helps
2 Likes
Kieran
November 8, 2025, 9:50pm
3
Brill thank you i have managed to get that working.
1 Like
kseniia
November 10, 2025, 12:06pm
4
We’re glad we could help resolve the issue!
If you have a minute, please rate HivePress on the WordPress repository or Trustpilot . Your feedback means a lot to us and makes a real difference in helping us grow.
system
Closed
December 10, 2025, 12:06pm
5
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.