Hi,
Is there way to display gift card amount in template picture just by 10 € instead of 10.00 € ?
Jake
Is there way to display gift card amount in template picture just by 10 € instead of 10.00 € ?
Jake
<?php
if ( in_array( $coupon_row->coupon_value_type, array( 'amount', 'amount_per' ) ) ) {
$display = AC()->storecurrency->format( $coupon_row->coupon_value );
}
?>
<?php
if ( in_array( $coupon_row->coupon_value_type, array( 'amount', 'amount_per' ) ) ) {
$display = AC()->storecurrency->format( $coupon_row->coupon_value );
if ( substr( $display, -3 ) == '.00' ) {
$display = substr( $display, 0, -3 );
}
}
?>