Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

Can anyone tell me How to use Redux Framework checkbox option and checkbox to hide below option on my themes?

If I try …

if ( isset($options['opt_ID'] ) ) {
<?php echo $options['opt_ID']; ?>
}

for checkbox option and Checkbox to hide below then not working also if i try

<?php
if ( isset($options['opt_ID'] ) ) {
<?php echo $options['opt_ID']; ?>
}
?>

… then its not working. Now how to I code this for this function(checkbox option and checkbox to hide below)?

share|improve this question
There are syntax errors in your code: in <?php echo $options['opt_ID']; ?> the opening and closing PHP tags must be removed. Try that and report back; update your question. – toscho Mar 14 at 19:55

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.