price-table-rcp.php
<h2 style="margin-bottom: 0px;">
<span class="rcp_price" rel="<?php echo esc_attr( $level->price ); ?>">
<?php
if ($level->fee) {
$adjusted_price = (($level->price)+($level->fee));
echo $adjusted_price > 0 ? rcp_currency_filter( $adjusted_price ) : __( 'free', 'jobify' );
?>
</h2>
<small>*<?php echo rcp_currency_filter( $level->price ); ?> after first <?php echo $level->duration; ?> days.</small>
<?php
} else {
$adjusted_price = $level->price;
echo $adjusted_price > 0 ? rcp_currency_filter( $adjusted_price ) : __( 'free', 'jobify' );
?>
</h2>
<?php
}
?>
</span>
</h2>
No comments yet.