Skip to content

Commit

Permalink
fixed all addons count
Browse files Browse the repository at this point in the history
  • Loading branch information
zubairraeen committed Mar 28, 2024
1 parent b4d1168 commit 6661714
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion php/admin/addons-page.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ function qsm_generate_featured_addons() {
?>
<div class="wrap custom-addon-upper">
<ul class="subsubsub">
<li class="all"><a href="javascript:void(0)" class="current" aria-current="page" data-section="all"><?php esc_html_e( 'All Addons', 'quiz-master-next' ); ?> <span id="qsm_total_count_text" class="count">(<?php echo count($all_addons); ?>)</span></a> |</li>
<li class="all"><a href="javascript:void(0)" class="current" aria-current="page" data-section="all"><?php esc_html_e( 'All Addons', 'quiz-master-next' ); ?> <span id="qsm_total_count_text" class="count">(<?php echo count($all_addons) - 6; ?>)</span></a> |</li>
<li class="publish"><a data-section="install" href="javascript:void(0)"><?php esc_html_e( 'Installed', 'quiz-master-next' ); ?> <span class="count">(<?php echo count( $tab_array ) - 1; ?>)</span></a></li>
</ul>
</div>
Expand Down

0 comments on commit 6661714

Please sign in to comment.