We use both BuddyPress & Woocommerce. However in the My Orders tab it only ever shows the last order in the “Recent Orders” list. I was able to fix this in the code but I couldn’t figure out how to filter it through my child theme. Hopefully this patch can be in the next release:
file: /wp-content/themes/kleo/lib/plugin-woocommerce/config.php line 1483
Change this:
wc_get_template( 'myaccount/my-orders.php', array( 'order_count' => 'all' ) );
to this:
wc_get_template( 'myaccount/my-orders.php' );
Hope that helps someone.
If this isn’t going to be patched in the next version how can I overwrite this in my child theme functions?