

Missing orders?
Are you missing order numbers? Order numbers are derived by sequential ID’s created by WordPress automatically. Any time any kind of content is created, a new post, a new menu or category or page or ORDER, the next sequential number ID is created.
Sometimes your orders will be sequential, but if work is being created elsewhere on the site the order numbers will jump.
More detail at www.sellwithwp.com
There is a plugin you can buy to fix for this…
http://www.woothemes.com/products/sequential-order-numbers-pro/
Or a real simple FREE version
http://wordpress.org/plugins/woocommerce-sequential-order-numbers/
Editing WOOcommerce page template
http://docs.woothemes.com/document/template-structure/
Change number of products displayed per page
/* CHICKENBOY: WOOcommerce change number of products displayed per page -------------------------------------------------------------- */ add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 24;' ), 20 );
REMOVE automated related products under the single product view
/* CHICKENBOY: REMOVE automated related products under the single product view -------------------------------------------------------------- */ remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);



