I ended up finding the solution to this, if anyone else is having this problem, add this code to your functions.php file:
// Change number of columns per row
add_filter(‘loop_shop_columns’, ‘change_loop_columns’, 999);
add_filter(‘storefront_loop_columns’, ‘change_loop_columns’, 999);
function change_loop_columns() {
return 4;
}
Where is says “return 4”, you can change that number to the amount you want across…