Update plugins/woocommerce/includes/admin/class-wc-admin-addons.php
Co-authored-by: Barry Hughes <3594411+barryhughes@users.noreply.github.com>
This commit is contained in:
parent
717317142a
commit
24bafaa74d
|
@ -1296,13 +1296,15 @@ class WC_Admin_Addons {
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
</span>
|
</span>
|
||||||
<span class="price-suffix"><?php
|
<span class="price-suffix">
|
||||||
|
<?php
|
||||||
$price_suffix = __( 'per year', 'woocommerce' );
|
$price_suffix = __( 'per year', 'woocommerce' );
|
||||||
if ( ! empty( $mapped->price_suffix ) ) {
|
if ( ! empty( $mapped->price_suffix ) ) {
|
||||||
$price_suffix = $mapped->price_suffix;
|
$price_suffix = $mapped->price_suffix;
|
||||||
}
|
}
|
||||||
echo esc_html( $price_suffix );;
|
echo esc_html( $price_suffix );
|
||||||
?></span>
|
?>
|
||||||
|
</span>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
<?php if ( ! empty( $mapped->reviews_count ) && ! empty( $mapped->rating ) ) : ?>
|
<?php if ( ! empty( $mapped->reviews_count ) && ! empty( $mapped->rating ) ) : ?>
|
||||||
|
|
Loading…
Reference in New Issue