WP Simple Pay: Per-Form Fixed Tax Rate Percentages
Override the returned tax rate for a given Payment Form. Important: Tax rates with the percentage…
WP Simple Pay: Custom Thousand Separator
Changes the thousand separator from the default , (comma) to a . (period).
WP Simple Pay: Disable Webhook Failed Notification
Disable alert bubbles when webhook events are not received.
WP Simple Pay: Remove Payment Page Compatibility Mode
Allows 3rd party scripts and styles to load on dedicated Payment Pages. These are disabled by…
Allow SVG Files Upload
/** * Allow SVG uploads for administrator users. * * @param array $upload_mimes Allowed mime types.…
Disable Emojis
/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…
Current Year
function current_year_shortcode() { return date('Y'); } add_shortcode('year', 'current_year_shortcode');
Remove Unused JS
/** * We will Dequeue the jQuery UI script as example. * * Hooked to the…
Explicit Fixed Width and Height
add_filter( 'the_content', 'add_image_dimensions' ); function add_image_dimensions( $content ) { preg_match_all( '/]+>/i', $content, $images); if (count($images) <…
footer
footer description
Custom Social Share Email Body
Can be used to modify the default email body (content) when a user clicks the social…
Allow Templatera Templates to be used for Dynamic Templates
In Total 5.9 with the introduction of the built in Dynamic Template post type we removed…