Add text if there are no product orders

This commit is contained in:
George Mamadashvili 2012-02-02 17:29:42 +04:00
parent 2370a8d957
commit 6570a7ced6
1 changed files with 2 additions and 0 deletions

View File

@ -135,6 +135,8 @@ function woocommmerce_dashboard_recent_orders() {
endforeach; endforeach;
echo '</ul>'; echo '</ul>';
else:
echo '<p>' . __( 'There are no product orders yet.', 'woocommerce' ) . '</p>';
endif; endif;
} }