woocommerce_cod_icon

woocommerce_cod_icon

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

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

apply_filters('woocommerce_cod_icon') is found 1 times:

  • /includes/gateways/cod/class-wc-gateway-cod.php line 87
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    * Setup general properties for the gateway.
     */
    protected function setup_properties() {
        $this->id                 = self::ID;
        $this->icon               = apply_filters( 'woocommerce_cod_icon', '' );
        $this->method_title       = __( 'Cash on delivery', 'woocommerce' );
        $this->method_description = __( 'Let your shoppers pay upon delivery — by cash or other methods of payment.', 'woocommerce' );
        $this->has_fields         = false;
    }
     
    /**