Skip to content

Filters & Actions

Cüneyt ÇiL edited this page Oct 18, 2023 · 1 revision

Show or hide installment price at under product price at singular page

add_filter( 'mokapay_mininstallment_message_avaliable', function($status, $product_object) { return true; }, 10, 2 )

Installment price html at under product price at singular page

add_filter( 'mokapay_mininstallment_message', function($html, $installment_price, $product_object) { return $html; }, 10, 3 )