I need help, maybe someone can point me in the right direction.
What’s the best way to change the design of the loop?
I want to display my products beneath each other, with the product image on the left and the price, title and maybe some other information next to it.
I found out how to change the items per row to one:
function loop_columns() {
return 1;
}
add_filter('loop_shop_columns', 'loop_columns', 999);
Now the design. Is there a hook or specific template file I should use? Or some documentation on this subject somewhere?
Thanks!