0
Users
0
Projects
0
Awards

FontAwesome Counter Shortcode Plugin – User Guide

🔧 What It Does

This plugin lets you add animated counters to your WordPress pages or posts using a simple shortcode. Each counter can display:

  • A FontAwesome icon
  • An animated number
  • A custom label
  • Custom colors and layout
  • Scroll-triggered animation with easing

🧩 How to Use the Shortcode

Use the

[fa_counter]

shortcode anywhere in your content. Here’s the basic format:

[fa_counter icon="fa-users" value="1500" label="Users"]

🎨 Available Attributes

AttributeDescriptionExample Value
iconFontAwesome icon class (without the `fas` prefix)fa-rocket
valueFinal number to count up to2500
labelText label shown below the numberProjects
durationAnimation duration in milliseconds3000
icon_colorColor of the icon#e91e63
text_colorColor of the number#222222
label_colorColor of the label text#555555
backgroundBackground color of the counter box#f9f9f9
widthWidth of the counter box (use `%`, `px`, or `em`)180px

🧪 Example: Multiple Counters in a Responsive Row

Wrap multiple counters in a container like this:

<div class="fa-counter-row">[fa_counter icon="fa-users" value="1500" label="Users" icon_color="#007BFF" duration="6000"] [fa_counter icon="fa-briefcase" value="320" label="Projects" icon_color="#28a745" duration="4000"] [fa_counter icon="fa-award" value="85" label="Awards" icon_color="#ffc107"]</div>

 This will display them side-by-side and wrap on smaller screens.

0
Users
0
Projects
0
Awards

🧠 Tips

  • Use [FontAwesome Icons] (https://fontawesome.com/icons) to find the right icon class.
  • Combine with headings or sections for a dashboard-style layout.
  • Use different durations for staggered animations.