/** * Shortcode: [affwp_network_stats] * * Returns a single network stat for the logged-in affiliate. * Use multiple instances in JetEngine with your own labels. * * Attributes: * type = total_earnings (default) | own_earnings | downline_earnings * | network_count…Continue reading
add_action( ‘wp_enqueue_scripts’, function() { if ( ! function_exists( ‘is_checkout’ ) || ! is_checkout() ) { return; } wp_enqueue_style( ‘affwp-select2’ ); wp_enqueue_script( ‘affwp-select2’ ); // Hide WC Blocks floating label + chevron — Select2 replaces the UI entirely wp_add_inline_style( ‘affwp-select2’, ‘…Continue reading
/** * Hide store credit field when a regular coupon is applied. * Also removes any already-applied store credit when a coupon is added. */ // PHP: Hide store credit on AJAX checkout refresh when coupon is active add_filter( ‘acfw_is_allow_store_credits’,…Continue reading
echo the_title();Continue reading
/* Center the form container */ .wpforms-container.wpf-center { margin: 0 auto !important; max-width: 500px !important; width: 500px !important; } /* Center submit button and make it full width */ .wpf-center .wpforms-submit-container { display: inline-block; text-align: center; width: 100% !important; }…Continue reading