Skip to content

Commit

Permalink
Fix plan name on admin bar
Browse files Browse the repository at this point in the history
  • Loading branch information
Khadreal committed Dec 18, 2024
1 parent 44eb526 commit f9a94bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/admin/admin-bar-status.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<?php endif; ?>
<div class="imagify-account">
<p class="imagify-meteo-title"><?php esc_html_e( 'Account status', 'imagify' ); ?></p>
<p class="imagify-meteo-subs"><?php esc_html_e( 'Your subscription:', 'imagify' ); ?> &nbsp;<strong class="imagify-user-plan"><?php echo $data['plan_label']; ?></strong></p>
<p class="imagify-meteo-subs"><?php esc_html_e( 'Your subscription:', 'imagify' ); ?> &nbsp;<strong class="imagify-user-plan"><?php echo strstr( $data['plan_label'], '_', true ); ?></strong></p>
</div>
</div>
<?php if ( $data['plan_with_quota'] ) : ?>
Expand Down

0 comments on commit f9a94bc

Please sign in to comment.