Can I customize the meta title and description of Sign In Page

Hi Team,

I wanted to know if I customize the meta title and description of the usuall Sign In page and Vendor Sign In page
I’m currently using the rankmath SEO plugin

Hi,

Please check the Rank Math settings to see if they have an option to set the meta title and description using the URL, as this is not a page and it is not available in WP Dashboard > Pages.

Is there any other way to change the meta title and description of the sign in pages (the usuall sign in page and the vendor sign in page), may be from theme files?

Hi,

If the third-party plugin doesn’t add meta title, we can provide a PHP snippet, let me know if it works for you.

That would be great help thank you Andrii,

Here are my login pages, I would need the code for both of them

https://www.scrapit.in/account/login/
https://www.scrapit.in/account/login/?redirect=https%3A%2F%2Fwww.scrapit.in%2Fregister-vendor%2F

Please try using this code snippet, replacing “test” with titles and descriptions:

add_action(
	'wp_head',
	function () {
		if ( ! function_exists( 'hivepress' ) || hivepress()->router->get_current_route_name() !== 'user_login_page' ) {
			return;
		}

		$title       = 'test';
		$description = 'test';

		if ( isset( $_GET['redirect'] ) && $_GET['redirect'] === 'https%3A%2F%2Fwww.scrapit.in%2Fregister-vendor%2F' ) {
			$title       = 'test';
			$description = 'test';
		}

		echo '<meta name="title" content="' . esc_attr( $title ) . '">';
		echo '<meta name="description" content="' . esc_attr( $description ) . '">';
	},
	1000
);