44 * The admin-specific functionality of the plugin.
55 *
66 * @link htps://www.justinwhall.com
7- * @since 1.0.0
7+ * @since 1.0.1
88 *
99 * @package Wp_Stripe_Plaid
1010 * @subpackage Wp_Stripe_Plaid/admin
@@ -145,7 +145,7 @@ public function get_settings_fields() {
145145 ),
146146 array (
147147 'name ' => 'stripe_help ' ,
148- 'desc ' => __ ( 'Stripe keys are located: <a href="https://dashboard.stripe.com/account/apikeys">https://dashboard.stripe.com/account/apikeys</a> ' , $ plugin_name ),
148+ 'desc ' => __ ( 'Stripe keys are located: <a target="_blank" href="https://dashboard.stripe.com/account/apikeys">https://dashboard.stripe.com/account/apikeys</a> ' , $ plugin_name ),
149149 'type ' => 'html '
150150 ),
151151 array (
@@ -158,17 +158,17 @@ public function get_settings_fields() {
158158 'sanitize_callback ' => 'sanitize_text_field '
159159 ),
160160 array (
161- 'name ' => 'plaid_secret ' ,
162- 'label ' => __ ( 'Plaid Secret ' , $ plugin_name ),
161+ 'name ' => 'plaid_public_key ' ,
162+ 'label ' => __ ( 'Plaid Public Key ' , $ plugin_name ),
163163 'desc ' => __ ( '' , $ plugin_name ),
164164 'placeholder ' => __ ( '' , $ plugin_name ),
165165 'type ' => 'text ' ,
166166 'default ' => '' ,
167167 'sanitize_callback ' => 'sanitize_text_field '
168168 ),
169169 array (
170- 'name ' => 'plaid_public_key ' ,
171- 'label ' => __ ( 'Plaid Public Key ' , $ plugin_name ),
170+ 'name ' => 'plaid_secret ' ,
171+ 'label ' => __ ( 'Plaid Secret ' , $ plugin_name ),
172172 'desc ' => __ ( '' , $ plugin_name ),
173173 'placeholder ' => __ ( '' , $ plugin_name ),
174174 'type ' => 'text ' ,
@@ -177,7 +177,7 @@ public function get_settings_fields() {
177177 ),
178178 array (
179179 'name ' => 'plaid_help ' ,
180- 'desc ' => __ ( 'Plaid keys are located: <a href="https://dashboard.plaid.com/account/keys">https://dashboard.plaid.com/account/keys</a> ' , $ plugin_name ),
180+ 'desc ' => __ ( 'Plaid keys are located: <a target="_blank" href="https://dashboard.plaid.com/account/keys">https://dashboard.plaid.com/account/keys</a> ' , $ plugin_name ),
181181 'type ' => 'html '
182182 ),
183183 array (
0 commit comments