Answer the question
In order to leave comments, you need to log in
How to make all products virtual and downloadable in Woocommerce by default?
Tell me, how to make the checkboxes by default active (so as not to tick each time) for virtual and downloadable products in Woocommerce when adding a product?
Answer the question
In order to leave comments, you need to log in
add_action( 'woocommerce_product_options_general_product_data', 'enable_virtual_option' );
function enable_virtual_option(){
?>
<script>
(function($){
$('input[name=_virtual]').prop('checked', true);
$('input[name=_downloadable]').prop('checked', true);
})(jQuery);
</script>
<?php
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question