Custom Sign In message

Hi, is there a way to change the “Sign In” title above the sign in form? I would use Loco translate, but I think that would change ALL instances of “sign in”, I just want to change that one title above the form. Is there a way to do that?

Please try this PHP snippet

add_filter( 
	'hivepress/v1/templates/site_footer_block', 
	function ($template){
		return hivepress()->helper->merge_trees(
			$template,
			[
				'blocks' => [
					'user_login_modal' => [
						'title' => 'Your title',
					],
				],
			]
		);
	},
	1000
);

Thank you, I will try this.

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