mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 13:44:42 +08:00
do not display dcc icons in gateway title in the admin
This commit is contained in:
parent
0905f30465
commit
ea785fa2f2
1 changed files with 3 additions and 0 deletions
|
@ -98,6 +98,9 @@ class CreditCardGateway extends PayPalGateway
|
|||
}
|
||||
|
||||
public function get_title() {
|
||||
if (is_admin()) {
|
||||
return parent::get_title();
|
||||
}
|
||||
$title = parent::get_title();
|
||||
$icons = $this->config->has('card_icons') ? (array) $this->config->get('card_icons') : [];
|
||||
if (empty($icons)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue