Bug: Typo in plugin source
-
There’s a typo in the filter hook name in
classes/plugin.phpon line 180:add_filter( 'flexible_chekout_fields_fields', [ $this, 'getCheckoutFields' ], 10, 2 );Should be:
add_filter( 'flexible_checkout_fields_fields', [ $this, 'getCheckoutFields' ], 10, 2 );(A missing “c”.)
This affects
Flexible_Checkout_Fields_Plugin::get_fields()which applies the (correctly spelled) hook and thus does nothing.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Bug: Typo in plugin source’ is closed to new replies.