Newsletter signup
Get your readers to sign up for your newsletters seamlessly, in a single click
Remove Location Taxonomy
// Add custom Bulk Action to the Pages view function custom_add_bulk_action() { global $post_type; if ($post_type…
Remove WordPress Version Number
add_filter('the_generator', '__return_empty_string');
Disable Gutenberg Editor (use Classic Editor)
add_filter('gutenberg_can_edit_post', '__return_false', 5); add_filter('use_block_editor_for_post', '__return_false', 5);
Remove Gutenberg CSS
//Remove Gutenberg Block Library CSS from loading on the frontend function smartwp_remove_wp_block_library_css(){ wp_dequeue_style( 'wp-block-library' ); wp_dequeue_style(…
Stop Lazy Load
add_filter( 'wp_lazy_loading_enabled', '__return_false' );
Ensure Webfont is Loaded
add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) { return 'swap'; }, 10, 3 );
Remove Google Fonts
add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );
Oktoberfest 5K - RaceCheck Widget
Review widget from RaceCheck for Oktoberfest 5K page
Untitled Snippet
HTML5
Whitelist Callback Functions for use in Theme Elements
Various elements in the Total theme allow you to select a callback function for the output…
Remove the Header Menu Underline on Hover
If you enable the Header menu underline it will display both on active items and on…
Custom Social Share Email Subject
If you wish to modify the email subject text when clicking the social share email icon…
Show Left Sidebar Before Content on Mobile
By default the sidebar always displays below the content on mobile. This code will allow you…
Override Header Logo with Custom SVG
While you can select an SVG image from the customizer for your header logo if you…