<?php
// if not charging for any ads
if ( get_option('activate_paypal') != "yes" ) { _e('All ad listings are FREE.','cp'); }
// if paypal is turned on and NO category-level pricing
elseif ( get_option('cp_price_scheme') == "single" && get_option('activate_paypal') == "yes" ) { ?>
<?php _e('One ad listing costs','cp'); ?>
<?php echo get_option('currency'); ?><?php echo get_option('ad_value'); ?>
<?php _e('for','cp'); ?>
<?php echo get_option("prun_period"); ?> <?php _e('days.','cp'); ?>
<?php }
// if paypal is turned on and category-level pricing
elseif ( get_option('cp_price_scheme') == "category" && get_option('activate_paypal') == "yes" ) { ?>
<?php _e('Ad listing prices vary based on category. List your item for','cp'); ?>
<?php echo get_option("prun_period"); ?> <?php _e('days.','cp'); ?>
<?php }
// if paypal is turned on and category-level pricing
elseif ( get_option('cp_price_scheme') == "percentage" && get_option('activate_paypal') == "yes" ) {?>
<?php _e('Ad listing price equates to','cp')?>
<?php echo get_option('cp_ad_percent'); ?>% <?php _e('of your item price. List your item for','cp');?>
<?php echo get_option("prun_period"); ?> <?php _e('days.','cp'); ?>
<?php } ?>