Move Text widget to top of sidebar

Hi, I have a text widget with a brief message instructing buyers to sign in or create and account in order to contact the seller. I would like this message to appear on top of the reply button. Can anyone tell me how I move it up to the top? Thank you.

If you mean a single listing page then please try this PHP snippet

add_filter(
	'hivepress/v1/templates/listing_view_page',
	function( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'page_sidebar_widgets' => [
						'_order' => '15',
					],
				],
			]
		);
	},
	1000
);

Thank you, I’ll try this. And is there by any chance a plugin that can handle these snippets? We’re running a child theme so not worried about updates, just looking for an easier way to manage things from the dashboard.

Please try the Code Snippets plugin to put code snippets on your website Code Snippets – WordPress plugin | WordPress.org

Thank you, I will do this.

Works great! Thanks!

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