Api_Credentials::render_help_text()

Summary

Add a link to set up the API account


Return

(void)


Source

File: src/BigCommerce/Settings/Sections/Api_Credentials.php

	public function render_help_text() {
		$api_accounts_url = 'https://login.bigcommerce.com/deep-links/settings/auth/api-accounts';
		$help_text        = sprintf(
			__( 'After signing in on BigCommerce with your account owner login, <a href="%s" target="_blank">create a new API Account</a> and copy the following credentials.', 'bigcommerce' ),
			$api_accounts_url
		);
		printf( '<p class="description">%s</p>', $help_text );
	}

User Contributed Notes

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