2012-02-08 15:20:32 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2012-08-14 18:05:45 +00:00
|
|
|
* Show error messages
|
|
|
|
*
|
|
|
|
* @author WooThemes
|
|
|
|
* @package WooCommerce/Templates
|
|
|
|
* @version 1.6.4
|
2012-02-08 15:20:32 +00:00
|
|
|
*/
|
2012-04-10 17:06:25 +00:00
|
|
|
if ( ! $errors ) return;
|
2012-02-08 15:20:32 +00:00
|
|
|
?>
|
|
|
|
<ul class="woocommerce_error">
|
2012-04-10 17:06:25 +00:00
|
|
|
<?php foreach ( $errors as $error ) : ?>
|
2012-02-08 15:20:32 +00:00
|
|
|
<li><?php echo $error; ?></li>
|
2012-02-08 15:55:02 +00:00
|
|
|
<?php endforeach; ?>
|
2012-02-08 15:20:32 +00:00
|
|
|
</ul>
|