Home / Admin / Changing Multiple Properties on Store Credit Accordion Checkout Page
Duplicate Snippet

Embed Snippet on Your Site

Changing Multiple Properties on Store Credit Accordion Checkout Page

This allows you to customize other parts of the Store Credit Accordion on the Checkout Page

Code Preview
php
<?php
add_filter( 'acfw_funnelkit_store_credit_field_labels', function( $labels ) {
    $labels['toggle_text'] = 'Apply Store Credit';
    $labels['placeholder'] = 'Enter your store credit code';
    $labels['balance_text'] = '%s Your Available Credit:';
    $labels['instructions'] = 'Use your store credit to get discounts on your purchase.';
    return $labels;
});

Comments

Add a Comment