Add note and system status link to PP settings

Closes #8158
This commit is contained in:
Mike Jolley 2015-05-15 14:50:48 +01:00
parent 0e72c5e699
commit cc213de455
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class WC_Gateway_Paypal extends WC_Payment_Gateway {
$this->has_fields = false; $this->has_fields = false;
$this->order_button_text = __( 'Proceed to PayPal', 'woocommerce' ); $this->order_button_text = __( 'Proceed to PayPal', 'woocommerce' );
$this->method_title = __( 'PayPal', 'woocommerce' ); $this->method_title = __( 'PayPal', 'woocommerce' );
$this->method_description = __( 'PayPal standard works by sending customers to PayPal where they can enter their payment information.', 'woocommerce' ); $this->method_description = sprintf( __( 'PayPal standard sends customers to PayPal to enter their payment information. PayPal IPN requires fsockopen/cURL support to update order statuses after payment. Check the %ssystem status%s page for more details.', 'woocommerce' ), '<a href="' . admin_url( 'admin.php?page=wc-status' ) . '">', '</a>' );
$this->supports = array( $this->supports = array(
'products', 'products',
'refunds' 'refunds'