• This file is missing is_archive() on line 30 otherwise the grid only works on half the archive pages, I added it below:

    plugins/et-divinizer# vi inc/features/DIVInizerArchiveBlogStyles.php

    28 function divinizer_add_style_class( $classes ) {
    29
    30 if ( is_archive() || is_category() || is_tag() || is_author() || is_search() || ( ! is_front_page() && is_home() ) ) {
    31 $classes[] = ‘divinizer-blog-grid’;
    32 }
    33
    34 return $classes;
    35 }
    36 }
    37
    38 new DIVInizerArchiveBlogStyles();
    ~

  • The topic ‘Missing is_archive() in conditional’ is closed to new replies.