Post count: 11437
Hi dshiladitya,
Please try to add this code below into functions.php
file:
|
add_filter('theme_mod_jnews_sidefeed_enable', function($enable){ $pagelist = array(10674, 10267); if ( is_page() && in_array(get_the_ID(), $pagelist) ) { return false; } return $enable; }); |
Thank you