Settings_Screen::render_support_link()

Summary

Render a link to support documentation at BigCommerce


Return

(void)


Source

File: src/BigCommerce/Settings/Screens/Settings_Screen.php

	public function render_support_link() {
		$support_link = 'https://support.bigcommerce.com/s/article/BigCommerce-for-WordPress-Resources';
		printf(
			'<p><a href="%s">%s</a></p>',
			esc_url( $support_link ),
			esc_html( __( 'Have questions? Need help?', 'bigcommerce' ) )
		);
	}

User Contributed Notes

You must log in before being able to contribute a note or feedback.