Home / Admin / Customize Store Credit Accordion on Checkout Page
Duplicate Snippet

Embed Snippet on Your Site

Customize Store Credit Accordion on Checkout Page

This snippet allows you to customize Store Credit Accordion on the Checkout Page

Code Preview
php
<?php
add_filter( 'acfw_funnelkit_store_credit_field_labels', function( $labels ) {
    $labels['toggle_text'] = 'Custom Accordion Title';
    return $labels;
});

Comments

Add a Comment