Hello 🙂
I try to use “checkbox” :
Title field : Climatisation avant
Name field : climatisation_avant
Type field : checkbox
Choice : Climatisation avant
In Code Snippets plugin, I added :
add_action( 'woocommerce_single_product_summary', 'importexport17_custom_climatisation_avant_field', 11 );
function importexport17_custom_climatisation_avant_field() { ?>
<?php if(get_field('climatisation_avant')) { ?>
<div class="cg-climatisation_avant"><?php the_field('climatisation_avant'); ?></div>
<?php }
}
In my page, front backend) I can see :
But in the page (front end) I see that :
Many thanks by advance if you can help me.