Category: Admin
Untitled Snippet
zrstore.com
Changing Multiple Properties on Store Credit Accordion Checkout Page
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; });Continue reading
Customize Store Credit Accordion on Checkout Page
add_filter( ‘acfw_funnelkit_store_credit_field_labels’, function( $labels ) { $labels[‘toggle_text’] = ‘Custom Accordion Title’; return $labels; });Continue reading
Change “Email” On Donation Form
add_filter( ‘charitable_default_donation_fields’, ‘charitable_change_default_donation_fields’, 10, 1); function charitable_change_default_donation_fields( $defaults ) { $defaults[’email’][‘donation_form’][‘label’] = ‘Please Provide Email’; return $defaults; }Continue reading
pantausidang
Untitled Snippet
(cloud) Current Date_Time
//v2.1 add_shortcode(‘visitor_datetime’, function() { static $instance = 0; $instance++; $id = ‘visitor_time_’ . $instance; return ‘ ‘; });Continue reading
Dynamic Year Copyright Shortcode
// Copy the Shortcode in the Insertion box below and paste it wherever you want the copyright symbol + year to be displayed. // This will output © 2023 or the current year automatically. echo “© ” . date( ‘Y’…Continue reading