Please check now. Now. I just updated this code from this file location. 
templates/eventplanner/html/com_content/category/blog.php
<?php if (!empty($this->intro_items)) : ?>
        <?php $blogClass = $this->params->get('blog_class', ''); ?>
        <?php if ((int) $this->params->get('num_columns') > 1) : ?>
            <?php $blogClass .= 'cols-' . (int) $this->params->get('num_columns'); ?>   
        <?php endif; ?>
        <div class="article-list">
            <div class="row row-<?php echo $counter + 1; ?> <?php echo $blogClass; ?>">
            <?php foreach ($this->intro_items as $key => &$item) : ?>
                <?php if ($key > 0) : ?>
                <div class="col-lg-<?php echo round(12 / Helper::SetColumn($this->params->get('num_columns'), 4)); ?>">
                    <div class="article"
                        itemprop="blogPost" itemscope itemtype="schema.org/BlogPosting">
                        <?php
                        $this->item = & $item;
                        echo $this->loadTemplate('item');
                        ?>
                    </div>
                    <?php $counter++; ?>
                </div>
                <?php endif; ?>
            <?php endforeach; ?>
            </div>
        </div>
    <?php endif; ?>
To 
<?php if (!empty($this->intro_items)) : ?>
        <?php $blogClass = $this->params->get('blog_class', ''); ?>
        <?php if ((int) $this->params->get('num_columns') > 1) : ?>
            <?php $blogClass .= 'cols-' . (int) $this->params->get('num_columns'); ?>   
        <?php endif; ?>
        <div class="article-list">
            <div class="row row-<?php echo $counter + 1; ?> <?php echo $blogClass; ?>">
            <?php foreach ($this->intro_items as $key => &$item) : ?>
                <div class="col-lg-<?php echo round(12 / Helper::SetColumn($this->params->get('num_columns'), 4)); ?>">
                    <div class="article"
                        itemprop="blogPost" itemscope itemtype="schema.org/BlogPosting">
                        <?php
                        $this->item = & $item;
                        echo $this->loadTemplate('item');
                        ?>
                    </div>
                    <?php $counter++; ?>
                </div>
            <?php endforeach; ?>
            </div>
        </div>
    <?php endif; ?>
-Thanks