Equal Height Columns free WordPress plugin
Description
Equal Height Columns free WordPress plugin
Like this plugin? Please consider leaving a 5-star review.
Equal Height Columns lets you easily equalize the height of various columns and elements.
Features
Target unlimited elements and element groups
Specify simple CSS/jQuery selectors to target elements
Specify breakpoint to kick in only at certain screen sizes
Easy to use admin interface
Heights are equalized immediately after the page has loaded
Fully responsive (automatically updates on resize and orientationchange events)
Works on mobile devices
Works across all modern browsers (including IE8)
Comes with custom event listener to manually trigger
Super small – 8kB jQuery file size
Trigger custom ‘equalheight’ event to force resize
Instructions
Navigate to Settings > Equal Height Columns in the WordPress admin.
Enter a selector and breakpoint for the first column group.
Add/remove column groups by clicking the “+ Add More” and “Remove” buttons.
Advanced
Want to trigger the equalizing of the heights manually? No problem. You can skip entering a selector on the settings page and call the jQuery script yourself using one of two functions:
jQuery( ‘.selector’ ).initEqualHeights(); // Or jQuery( ‘.selector’ ).equalizeTheHeights();
The difference between these two functions is simply that initEqualHeights() will set up all the events for recalculating the heights when the window is resized or the global equalheights event is triggered, but equalizeTheHeights() will simply equalize the heights without involving any events.
Both functions take three optional arguments, the minimum height (number of pixels), maximum height, and the breakpoint (below which the heights will revert to their original size):
jQuery( ‘.selector’ ).initEqualHeights( minHeight, maxHeight, breakPoint );
So an example might look like this:
jQuery( ‘.selector’ ).initEqualHeights( 200, 500, 768 );
When entering a selector on the settings page or using the initEqualHeights() method this plugin also adds an event ‘equalheights’ to the window, allowing you to easily trigger the equalizing manually. This is useful if you have added new items to the page after it loads via AJAX. You can trigger the event like this:
jQuery( window ).trigger( ‘equalheights’ );
Another option for controlling which elements get equalized is the equal_height_columns_elements filter. This filter operates on the array of data that gets passed to the JS right before it is passed. This allows for developers to specify selectors that can’t be deleted from the settings page, and for programmaticly building selectors based on dynamic data. Here’s an example of how the filter can be used:
add_filter( ‘equal_height_columns_elements’, ‘custom_ehc_elements’ ); function custom_ehc_elements( $elements ) { $elements[‘element-groups’][‘custom’] = array( ‘selector’ => ‘.ehc-target’, // Selector goes here. ‘breakpoint’ => ‘768’, ); return $elements; }
The keys on the element-groups array used by selectors entered on the settings page will come in as numbered indexes, so to avoid collision it’s best to use named keys for any custom selectors (we’re using ‘custom’ in the example above, but any unique string will work).
This plugin is on Github and pull requests are always welcome.