How move "Don't have an account yet? Register"

Hello,
how to move by php snippet text " Don’t have an account yet? Register" under title " Sign In"
like this:

Hi,

Yes, it is possible, I recommend using this hook hivepress/v1/forms/user_register. Also, please check these PHP samples: Search · user:hivepress change order · GitHub

​I hope this is helpful to you.

whats wrong?

add_filter(
	'hivepress/v1/forms/user_register',
	function( $template ) {
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'user_register' => [
						'_order' => 123,
					],
				],
			]
		);
	},
	1000
);

Hi,

Unfortunately, this simple PHP snippet won’t work because you need to remove this information from the footer form and add it to the header of the form.

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