Hi I am trying to combine some else and elseif. Just totally stuck, this is my code. But its not working at all:
<?php if ( $clpr_options->coupon_code_hide ) {
$button_text = fl_get_option( 'fl_lbl_show_coupon' );
$button_text = '<i class="icon-lock"></i>' . $button_text;
$class .= ' coupon-hidden';
} elseif ($clpr_options->coupon_code_hide ) {
$button_text = fl_get_option( 'fl_lbl_show_coupon' );
$meta = (get_post_meta( $post->ID, 'clpr_coupon_code', true )
if ($meta == '') {
$button_text = 'test' . $button_text;
$class .= ' coupon-hidden';
} else {
$class .= ' ' . $coupon_type;
$button_text = wptexturize( get_post_meta( $post->ID, 'clpr_coupon_code', true ) );
} ?>
Aucun commentaire:
Enregistrer un commentaire