Registration_Form::render( $attr,  $instance )

Summary

No summary available.

Source

File: src/BigCommerce/Shortcodes/Registration_Form.php

	public function render( $attr, $instance ) {
		if ( ! get_option( 'users_can_register' ) || ! bigcommerce()->credentials_set() || is_user_logged_in() ) {
			return '';
		}
		$component = Templates\Registration_Form::factory();
		return $component->render();
	}


User Contributed Notes

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