by Chris Cummings | Nov 13, 2018 | Divi, Divi Theme
A good handy guide for Divi image sizes.
- Full Width Edge To Edge: 1920×1080
- 1 column: 1080 x 608
- 3/4 column: 795 x 447
- 2/3 column: 700 x 394
- 1/2 column: 510 x 287
- 1/3 column: 320 x 181
- 1/4 column: 225 x 128
height should follow 16:9 if possible
by Chris Cummings | Jul 8, 2016 | Divi, Divi Theme, Favorites, Wordpress
This place has assembled a lot of the Divi plugins in one place. Sweet!
http://www.divithemeexamples.com/divi-theme-plugins/
by Chris Cummings | Nov 21, 2015 | Divi, Divi Theme, Woocommrece, Wordpress
Whew, that’s a long title!
So I’m branching out into using the Divi theme a bit more. It’s an OK theme, I probably haven’t explored all of it’s customizations enough, but it’s no Avada. 🙂 It’s nice though.
If you are using
Then here’s a tip. It wont work…out of the box at least. However after much searching I found a quick fix here.
Just add the code below to the functions.php file in your child theme (because you know to ALWAYS use a child theme, right?)
/* products per page with - this fixes it when using divi */
add_action( 'pre_get_posts', 'wppp_extra_filter', 30 );
function wppp_extra_filter( $query = false ) {
$query->set( 'posts_per_page', apply_filters( 'loop_shop_per_page', 12 ) );
}
And presto, it’s working!