Skip to content

Commit

Permalink
Updates verbiage, ref #204, #425
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Angell committed Apr 26, 2017
1 parent 2ed5f6c commit e8d0746
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions paypal-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -827,21 +827,21 @@ function angelleye_product_type_options_own($product_type){
'id' => '_paypal_billing_agreement',
'wrapper_class' => '',
'label' => __( 'Enable PayPal Billing Agreement', 'paypal-for-woocommerce' ),
'description' => __( 'Adds a billing agreement to the product. The user must agree to the billing agreement on the PayPal checkout pages, and then you can process future payments for the buyer using reference transactions..', 'paypal-for-woocommerce' ),
'description' => __( 'Adds a billing agreement to the product. The user must agree to the billing agreement on the PayPal checkout pages, and then you can process future payments for the buyer using reference transactions.', 'paypal-for-woocommerce' ),
'default' => 'no'
);
$product_type['enable_sandbox_mode'] = array(
'id' => '_enable_sandbox_mode',
'wrapper_class' => '',
'label' => __( 'Enable Sandbox Mode', 'paypal-for-woocommerce' ),
'description' => __( '', 'paypal-for-woocommerce' ),
'description' => __( 'If this product is included in the cart the order will be processed in the PayPal sandbox for testing purposes.', 'paypal-for-woocommerce' ),
'default' => 'no'
);
$product_type['enable_ec_button'] = array(
'id' => '_enable_ec_button',
'wrapper_class' => '',
'label' => __( 'Enable Express Checkout Button', 'paypal-for-woocommerce' ),
'description' => __( '', 'paypal-for-woocommerce' ),
'description' => __( 'Adds the PayPal Express Checkout button to the product page allowing buyers to checkout directly from the product page.', 'paypal-for-woocommerce' ),
'default' => 'no'
);
return $product_type;
Expand Down

0 comments on commit e8d0746

Please sign in to comment.