Custom Receipt Page
Redirect to custom receipt or another page after a donation is completed. Can be per campaign…
Add Featured Image
Add a featured image to the individual campaign pages.
Display Post and Page IDs in WordPress Columns
This PHP code enables you to display the IDs of posts and pages within WordPress columns.…
Change Default Post Type Plural Label “Locations”
This filter can be used to change the default post type plural label from “Locations” to…
Remove Gutenberg Block CSS
Remove Gutenberg Block Library CSS from loading on the frontend
Remove the Article schema from Posts
This snippet removes the Article schema from Posts
Disable Schema Output for WooCommerce products
This filter can be used to Disable Schema Output for WooCommerce products.
Change Default Post Type Slug “location”
This filter can be used to change the default post type slug from “location” to 'franchise'.
Add Image Alt Text automatic
function add_alt_text_to_images( $html ) { // Check if the image has a title attribute if (…
Remove users from WP-JSON
Increase your site's security by hiding usernames from WP-JSON, that are otherwise exposed to the public.
Disable Emoji Image Conversion Script of the Classic Editor
This filter can be used to disable the emoji image conversion script of the Classic Editor…
Disable All Page Builder Integration
This filter can be used to completely disable our page builder integration for all builders.
Remove Google Fonts (non-Elementor)
function disable_google_fonts() { return false; } add_filter( 'print_google_fonts', 'disable_google_fonts' );
Add a color picker field in Formidable Forms
Install this snippet and add 'frm-color-picker' in the 'CSS Layout Classes' setting for a field.
How to Restrict Countries Inside Smart Phone Form Fields
/** * Restrict countries inside the Smart Phone form field * * @link https://wpforms.com/how-to-restrict-countries-inside-smart-phone-form-fields/ */ function…