How to Add a Note to Add Listing Page

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

Brill thank you i have managed to get that working.

1 Like

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.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.