I am using this code to generate the credit card form but it throws a notice that
credit_card_form is deprecated since version 2.6! Use WC_Payment_Gateway_CC->form instead.
public function payment_fields() {
$this->credit_card_form();
}
So how do i access that class as i am currently extending the WC_Payment_Gateway
?
class GGOwl_Woo extends WC_Payment_Gateway {