woocommerce_cheque_icon

woocommerce_cheque_icon

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_cheque_icon') is found 1 times:

  • /includes/gateways/cheque/class-wc-gateway-cheque.php line 45
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    * Constructor for the gateway.
     */
    public function __construct() {
        $this->id                 = self::ID;
        $this->icon               = apply_filters( 'woocommerce_cheque_icon', '' );
        $this->has_fields         = false;
        $this->method_title       = _x( 'Check payments', 'Check payment method', 'woocommerce' );
        $this->method_description = __( 'Take payments in person via checks. This offline gateway can also be useful to test purchases.', 'woocommerce' );
     
        // Load the settings.
        $this->init_form_fields();