OK, I found a solution. In the ‘section-counter.php’ file, I changed the line <span class="n counter"><?php echo esc_html( $box['number'] ); ?></span>
to
<?php if ( $box['number'] ) { ?> <span class="n counter"><?php echo esc_html( $box['number'] ); ?></span> <?php } ?>
-
This reply was modified 5 years, 9 months ago by bfaliszek.