Archived topic
apply CSS to all posts with a category LiveMap
3 replies · Started by Tim on March 24, 2017
Hello,
I want to keep a modal box with exit-intent from showing on posts with category LiveMap
I got the php code from
https://generatepress.com/forums/topic/change-header-background-for-category-or-pages/#post-120674
add_filter('body_class','add_category_to_single');
function add_category_to_single($classes) {
if (is_single() ) {
global $post;
foreach((get_the_category($post->ID)) as $category) {
echo $category->cat_name . ' ';
// add category slug to the $classes array
$classes[] = 'category-'.$category->slug;
}
}
// return the $classes array
return $classes;
}
And
.category-LiveMap .pp-modal-content {
diplay:none;
}
But not working, am I doing this correctly?
Thanks
Hi Tim,
First just want to make sure you replaced category- with category-livemap.
Can you provide a link to your site?
Thanks!
Hey Leo, it turns out the code is working
The problem was that the css was not executing on the exit-intent popup
Thanks for the responce
Glad I could help :)