Merge branch 'trunk' into PCP-837-pui-ensure-taxes

This commit is contained in:
dinamiko 2022-08-30 14:41:36 +02:00
commit 526c25f501
2 changed files with 9 additions and 9 deletions

View file

@ -62,17 +62,17 @@ class HeaderRenderer {
<div class="ppcp-settings-page-header"> <div class="ppcp-settings-page-header">
<img alt="PayPal" src="' . esc_url( $this->module_url ) . 'assets/images/paypal.png"/> <img alt="PayPal" src="' . esc_url( $this->module_url ) . 'assets/images/paypal.png"/>
<h4> <span class="ppcp-inline-only">-</span> ' . __( 'The all-in-one checkout solution for WooCommerce', 'woocommerce-paypal-payments' ) . '</h4> <h4> <span class="ppcp-inline-only">-</span> ' . __( 'The all-in-one checkout solution for WooCommerce', 'woocommerce-paypal-payments' ) . '</h4>
<a class="button" href="https://woocommerce.com/document/woocommerce-paypal-payments/">' <a class="button" target="_blank" href="https://woocommerce.com/document/woocommerce-paypal-payments/">'
. __( 'Documentation', 'woocommerce-paypal-payments' ) . . __( 'Documentation', 'woocommerce-paypal-payments' ) .
'</a> '</a>
<a class="button" href="https://woocommerce.com/my-account/create-a-ticket/">' <a class="button" target="_blank" href="https://woocommerce.com/document/woocommerce-paypal-payments/#get-help">'
. __( 'Get Help', 'woocommerce-paypal-payments' ) . . __( 'Get Help', 'woocommerce-paypal-payments' ) .
'</a> '</a>
<span class="ppcp-right-align"> <span class="ppcp-right-align">
<a href="https://woocommerce.com/feature-requests/woocommerce-paypal-payments/">' <a target="_blank" href="https://woocommerce.com/feature-requests/woocommerce-paypal-payments/">'
. __( 'Request a feature', 'woocommerce-paypal-payments' ) . . __( 'Request a feature', 'woocommerce-paypal-payments' ) .
'</a> '</a>
<a href="https://github.com/woocommerce/woocommerce-paypal-payments/issues/new?assignees=&labels=type%3A+bug&template=bug_report.md">' <a target="_blank" href="https://github.com/woocommerce/woocommerce-paypal-payments/issues/new?assignees=&labels=type%3A+bug&template=bug_report.md">'
. __( 'Submit a bug', 'woocommerce-paypal-payments' ) . . __( 'Submit a bug', 'woocommerce-paypal-payments' ) .
'</a> '</a>
</span> </span>

View file

@ -155,22 +155,22 @@ define( 'PPCP_FLAG_SEPARATE_APM_BUTTONS', apply_filters( 'woocommerce_paypal_pay
$links, $links,
array( array(
sprintf( sprintf(
'<a href="%1$s">%2$s</a>', '<a target="_blank" href="%1$s">%2$s</a>',
'https://woocommerce.com/document/woocommerce-paypal-payments/', 'https://woocommerce.com/document/woocommerce-paypal-payments/',
__( 'Documentation', 'woocommerce-paypal-payments' ) __( 'Documentation', 'woocommerce-paypal-payments' )
), ),
sprintf( sprintf(
'<a href="%1$s">%2$s</a>', '<a target="_blank" href="%1$s">%2$s</a>',
'https://woocommerce.com/my-account/create-a-ticket/', 'https://woocommerce.com/document/woocommerce-paypal-payments/#get-help',
__( 'Get help', 'woocommerce-paypal-payments' ) __( 'Get help', 'woocommerce-paypal-payments' )
), ),
sprintf( sprintf(
'<a href="%1$s">%2$s</a>', '<a target="_blank" href="%1$s">%2$s</a>',
'https://woocommerce.com/feature-requests/woocommerce-paypal-payments/', 'https://woocommerce.com/feature-requests/woocommerce-paypal-payments/',
__( 'Request a feature', 'woocommerce-paypal-payments' ) __( 'Request a feature', 'woocommerce-paypal-payments' )
), ),
sprintf( sprintf(
'<a href="%1$s">%2$s</a>', '<a target="_blank" href="%1$s">%2$s</a>',
'https://github.com/woocommerce/woocommerce-paypal-payments/issues/new?assignees=&labels=type%3A+bug&template=bug_report.md', 'https://github.com/woocommerce/woocommerce-paypal-payments/issues/new?assignees=&labels=type%3A+bug&template=bug_report.md',
__( 'Submit a bug', 'woocommerce-paypal-payments' ) __( 'Submit a bug', 'woocommerce-paypal-payments' )
), ),