WC_Gateway_Paypal::admin_options()
Admin Panel Options.
Description Description
- Options for bits like ‘title’ and availability on a country-by-country basis.
Source Source
File: includes/gateways/paypal/class-wc-gateway-paypal.php
public function admin_options() {
if ( $this->is_valid_for_use() ) {
parent::admin_options();
} else {
?>
<div class="inline error">
<p>
<strong><?php esc_html_e( 'Gateway disabled', 'woocommerce' ); ?></strong>: <?php esc_html_e( 'PayPal does not support your store currency.', 'woocommerce' ); ?>
</p>
</div>
<?php
}
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |