Hi Taffy,
This is possible. I’ll need to submit a patch to enable you to fully do this via a child theme and without modifying the switch framework.
1) Please install and activate the supplied child theme, inside the child theme functions.php
file please paste this:
`function uplift_spb_social_grid_item_count() {
$item_count = array(
__( “3”, ‘uplift’ ) => “3”,
__( “4”, ‘uplift’ ) => “4”,
__( “5”, ‘uplift’ ) => “5”,
__( “6”, ‘uplift’ ) => “6”
);
return $item_count;
}
add_filter(‘sf_blog_grid_standard_item_columns’, ‘uplift_spb_social_grid_item_count’);`
2) Please open the file /wp-content/plugins/swift-framework/includes/page-builder/shortcodes/blog-grid.php
. Replace the contents with this: https://gist.github.com/webadelic/0e9ae47a8904c11e2c23d3d04f47a796.
Please test that and see how that works out for you and I will submit this for a future update.