diff --git a/functions-parent-override.php b/functions-parent-override.php index 099e7d9..963c68f 100644 --- a/functions-parent-override.php +++ b/functions-parent-override.php @@ -5,3 +5,8 @@ * * */ +add_filter( 'gb_account_register_user_fields', 'remove_guest_registration_field', 100, 1 ); +function remove_guest_registration_field( $fields = array() ) { + unset($fields['guest_purchase']); + return $fields; +} \ No newline at end of file diff --git a/gbs/checkout/login-or-register.php b/gbs/checkout/login-or-register.php new file mode 100644 index 0000000..0181e8d --- /dev/null +++ b/gbs/checkout/login-or-register.php @@ -0,0 +1,32 @@ +
+ +

+ +
+
+
+

+
+
+ +
+ +
+ +
+
+

+
+
+ + +
+ +
+ + +
+ +
\ No newline at end of file diff --git a/style.css b/style.css index 870ca0f..9358a2c 100755 --- a/style.css +++ b/style.css @@ -1,5 +1,5 @@ /* -Theme Name: Blank Child Theme +Theme Name: Response Child Theme Theme URI: http://groupbuyingsite.com Description: This theme will be identical to the Response Theme until you add modifications. Author: Group Buying Site @@ -12,3 +12,6 @@ template: response-theme Add your custom styles below: */ +#gb_checkout_payment table, #gb_checkout_review table { + width: 100%; +} \ No newline at end of file