A little correction
-
In file: ht-mega-for-elementor / includes / widgets / htmega_post_grid_tab.php
There is an error in line 1180, when you render categories:
<li><a href="<?php echo esc_url( $term_link ); ?>" class="category <?php echo esc_attr( $category->slug ); ?>"><?php echo esc_attr( $category->name );?></a></li> <?php echo '</ul> } ';
Must be:
<li><a href="<?php echo esc_url( $term_link ); ?>" class="category <?php echo esc_attr( $category->slug ); ?>"><?php echo esc_attr( $category->name );?></a></li> <?php } echo '</ul>';
can you change it in next updates, please?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘A little correction’ is closed to new replies.