Join our new community forum for support & discussion

Join Now

Home Support Themes JobHive How make a title on the page of job?

How make a title on the page of job?

  • Author
    Posts
  • approve24

    http://joxi.ru/GrqyyLGC4P0x7r – please, tell me, how can I put title here?

    ihor developer

    You can try this PHP snippet:

    add_filter(
    	'hivepress/v1/templates/listing_view_page',
    	function( $template ) {
    		return hivepress()->helper->merge_trees(
    			$template,
    			[
    				'blocks' => [
    					'page_sidebar' => [
    						'blocks' => [
    							'my_custom_block' => [
    								'type'    => 'content',
    								'content' => 'title or other custom HTML content here',
    								'_order'  => 20,
    							],
    						],
    					],
    				],
    			]
    		);
    	},
    	1000
    );
Viewing 2 posts - 1 through 2 (of 2 total)

New Reply

This forum has been archived and is no longer accepting new posts or replies. Please join our new community forum for support & discussion.