From 89fda4204e4c43c20b0e1a84762ffa069ffbac26 Mon Sep 17 00:00:00 2001 From: Kevin Killingsworth Date: Tue, 28 Jun 2016 12:48:03 -0500 Subject: [PATCH] Fix checkout gateway section urls (#11273) Fixes issue #11273 Changes from class name to gateway id for section name. --- includes/admin/settings/class-wc-settings-checkout.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/admin/settings/class-wc-settings-checkout.php b/includes/admin/settings/class-wc-settings-checkout.php index 0af0aa3acea..6e8247e614d 100644 --- a/includes/admin/settings/class-wc-settings-checkout.php +++ b/includes/admin/settings/class-wc-settings-checkout.php @@ -317,7 +317,7 @@ class WC_Settings_Payment_Gateways extends WC_Settings_Page { case 'name' : $method_title = $gateway->get_title() ? $gateway->get_title() : __( '(no title)', 'woocommerce' ); echo ' - ' . esc_html( $method_title ) . ' + ' . esc_html( $method_title ) . ' '; break;