Home › Forums › WoodMart support forum › Dokan sidebar question › Reply To: Dokan sidebar question
September 6, 2018 at 8:33 am
#75763
Artem Temos
Keymaster
Try to add the following PHP code snippet to the child theme functions.php file to do this
function woodmart_is_blog_archive() {
return ( is_search() || is_tag() || is_category() || is_date() || is_author() );
}