Created
June 4, 2021 06:10
-
-
Save alamgircsebd/5b540ff972de76216184bf0652cc4978 to your computer and use it in GitHub Desktop.
Dokan product page downloadable and virtual force always checked
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Dokan product page downloadable and virtual force always checked | |
*/ | |
function dokan_product_page_downloadable_virtual_checkbox_force_checked() { | |
if ( is_user_logged_in() && function_exists( 'dokan_is_seller_dashboard' ) && dokan_is_seller_dashboard() ) { | |
?> | |
<script> | |
(function($) { | |
var Dokan_Product_Virtual_Download_Checkbox_Customized = { | |
init: function() { | |
$('.downloadable-checkbox ._is_downloadable').prop('checked', true); | |
$('.virtual-checkbox ._is_virtual').prop('checked', true); | |
}, | |
}; | |
$(function() { | |
Dokan_Product_Virtual_Download_Checkbox_Customized.init(); | |
}); | |
})(jQuery); | |
</script> | |
<?php | |
} | |
} | |
add_action( 'wp_footer', 'dokan_product_page_downloadable_virtual_checkbox_force_checked' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment