Skip to content

Remove Additional CSS Tab from Customizer

Simple Site Pre-loader

Total has a built-in site loading and page animation function however, if you just want a very simple pre-loader that shows up while your site is loading it's very easy to do with a little PHP and CSS.

Read more

Display Stretch & Full-Height Rows on Site Render

By default stretch rows are hidden when the site is first loaded to prevent the "bounce" affect when the row becomes stretched (it uses javascript to stretch so it can't run until the site is rendered). If you want though…

Read more

Custom Blog Entry Blocks/Sections & Output

This is very similar to the snippet example here here but it allows you to have a custom output function rather then creating a template part. It also allows you to override any of the default "blocks" with your custom…

Read more

Disable Image Overlays on Mobile

// Example 1: Disable for all overlays add_filter( 'wpex_overlay_mobile_support', '__return_false' ); // Example 2: Disable on homepage only add_filter( 'wpex_overlay_mobile_support', function( $support, $style ) { if ( is_front_page() ) { $support = false; } return $support; }, 10, 2 );…

Read more

Add A Login/Logout Button To Main Menu

Because of how WordPress menus work the only way to add a login/logout is either using a plugin or custom code that hooks into the menu output. Here is a snippet showing how you can add your own custom login/logout…

Read more
Back To Top