Define Layout for wpCasa
<?php
/**
* Define Layout for wpCasa
*/
add_filter( 'wpsight_layout', 'custom_layout', 20 );
function custom_layout() {
return 'four'; // choose between 'three' or 'four'. Four also includes the option for having 2 columns.
}