Show discount table only on product page
Show the discount table only on product pages.
add_action('wp_head', function() {
if(!is_single()){
?>
<style>.awdr-bulk-customizable-table{display:none}</style>
<?php
}
});Show the discount table only on product pages.
add_action('wp_head', function() {
if(!is_single()){
?>
<style>.awdr-bulk-customizable-table{display:none}</style>
<?php
}
});