Hi, I am looking for a solution to add some text after some no. of list items like after 5 items. I was to make a counter with in this function
public function q_list_item( $q_item )
{
$this->output( '<div class="qa-q-list-item row' . rtrim( ' ' . @$q_item['classes'] ) . '" ' . @$q_item['tags'] . '>' );
$this->q_item_stats( $q_item );
$this->q_item_main( $q_item );
$this->q_item_clear();
$this->output( '</div> <!-- END qa-q-list-item -->', '' );
}
But could not solve. Please help