Categories

  • Access & Security 95
  • Administration 171
  • Advertisement 92
  • Audio & Video 66
  • Author & Content 99
  • Comments 96
  • Communication 110
  • Communities & Forums 84
  • Development 47
  • E-Commerce 76
  • Email Management 53
  • Events & Calendars 80
  • Language 25
  • Map & Weather 44
  • Migration & Conversion 28
  • Miscellaneous 254
  • Mobile 15
  • Photos 143
  • Plugins 260
  • SEO & Site Speed 118
  • Social 186
  • Theme Enhancement 169



  • Add this plugin to a List

    You need to be logged in to add this plugin to your list.

    Progress Bar

    Add to List

    This plugin does one thing: it creates a simple (but nice-looking) CSS3 progress bar that you can style with your own CSS and use wherever you want with a simple shortcode. Now with support for custom colors and gradients.

    To add a progress bar to a post or a page, simply use this shortcode:

    [wppb progress=50]
    

    where “50” in the example above is a progress bar that is 50% complete.  Simple, lightweight, cross-browser compatible (degrades nicely for browsers that don’t support CSS3).

    For more examples and full descriptions of all the available options, click on the options tab.

    For demos of each of the options, go here: https://progressbar.jazzsequence.com

    Options

    This page describes all the available parameters for the shortcode. These can be used in any combination. The only required parameter is progress. All parameters are case-sensitive (e.g. “progress” will work but “Progress” will not).

    progress (required)

    This determines how full the progress bar will be. Progress can be in 2 forms, either a number (0-100), in which case it will be interpreted as a percentage, or as a fraction (e.g. 25/100). Since 1.1, you can also use dollar signs (e.g. $63/$180), for example to create a fundraising progress bar. If using dollar signs, you only need to add a dollar sign to one or the other of the two values (e.g. 63/$180 or $63/180) — the plugin will output either option the same ($63/$180). Your progress can go over, too (e.g. 150/100 or 123%), but your mileage may vary for the display. It’s not recommended to use this with the fullwidth option, for example, because your progress will spill outside of your main body container.

    Examples

    [wppb progress=50] A progress bar that is 50% complete
    
    [wppb progress="50/100"] A progress bar that is 50/100 complete
    
    [wppb progress="$45/$50"] A dollar value progress bar that is $45/$50 complete
    
    [wppb progress=110] A progress bar that has gone over 100%
    
    [wppb progress=150/100] A progress bar that has exceeded its goal
    
    [wppb progress=$125/100] A fundraising-style progress bar that has exceeded the goal
    

    option

    This adds one of several supported options to the progress bar. For those that know CSS, new “options” can be added simply by adding new styles to your style.css. See the Frequently Asked Questions page for more information on creating new CSS classes. Options can be combined by wrapping them in quotes in the shortcode. The progress bar will naturally have an inner shadow applied to it. The flat option was added to remove the shadow and display a “flat” color, best when used in conjunction with the color parameter.

    Supported values: candystripe, animated-candystripe, red, orange, green, yellow, flat

    Examples

    [wppb progress=50 option=red] Displays a red progress bar
    
    [wppb progress=50 option="animated-candystripe green"] Displays a green progress bar with an animated candystripe
    
    [wppb progress=50 option="candystripe orange"] Displays an orange progress bar with a static candystripe
    
    [wppb progress=50 option=candystripe] Displays a default progress bar (blue) with a static candystripe
    
    [wppb progress=50 option=flat color=red] Displays a red progress bar with no inner shadow or gradient
    
    [wppb progress=50 option="flat candystripe" color=gray] Displays a gray progress bar with no inner shadow or gradient and a static candystripe
    

    location

    Displays the percentage, text or fraction either inside or outside the progress bar.
    Note: It is not recommended to use location=after if you are displaying a progress bar that exceeds its goal.

    Supported values: inside, after

    Examples

    [wppb progress=50 option=red location=after] Displays a red progress bar with the progress displayed to the right of the progress bar.
    
    [wppb progress=50 option="red candystripe" location=inside] Displays a red progress bar with a static candystripe and the progress displayed inside the progress bar.
    
    [wppb progress=85 location=after text="foo"] Displays a progress bar with the text "foo" displayed after the progress bar.
    

    text

    Displays arbitrary text instead of the progress bar. Can be used with the location parameter to define whether the text appears inside or outside the progress bar (default is inside). Must be used inside double quotes. HTML code is stripped from the final output.

    Supported values: any plain text string

    Examples

    [wppb progress=75 text="My awesome text"] Displays "My awesome text" inside a 75% progress bar.
    
    [wppb progress=85 location=after text="foo"] Displays "foo" after an 85% progress bar
    
    [wppb progress=85 location=inside text="hello!"] Displays "hello!" inside an 85% progress bar (note, default location for text is inside, so it isn't required to specify "inside").
    

    fullwidth

    Makes the progress bar take up 100% of the container. (Good for responsive layouts.) Not recommended for progress bars that exceed their goal.
    Note: fullwidth will actually take any value. If fullwidth is present at all, it will display a progress bar that is 100% wide. For example fullwidth=foo would output the same as fullwidth=true.

    Supported value: true

    Examples

    [wppb progress=50 fullwidth=true] Displays a full-width (responsive) progress bar
    
    [wppb progress=50 fullwidth=foo] Identical to the above progress bar
    

    color

    Defines a color for the progress bar. This is useful for creating new progress bar colors on the fly without having to edit CSS. Cannot be used in conjunction with any of the pre-existing color options (red, yellow, orange or green).

    Supported values: any hexadecimal color value, any rgb/rgba color value, any css-supported color name

    Examples

    [wppb progress=50 color=rgb(123,50,87)]
    
    [wppb progress=55 color=rgba(123,64,99,0.3)]
    

    Note: Since the background color for the progress bar is dark gray, any opacity applied to the rgba color will make the color darker, since it’s adding to the dark gray background.

    [wppb progress=22 color=#ff3257]
    
    [wppb progress=68 color=lightYellow]
    

    endcolor

    Defines an end color for a custom gradient when used with color.

    Supported values: any hexadecimal color value, any rgb/rgba color value, any css-supported color name

    Examples

    [wppb progress=72 color=turquoise endcolor=teal]
    
    [wppb progress=83 color=#ff2222 endcolor=#ff9984]
    
    [wppb progress=50 color=rgb(203,96,179) endcolor=rgb(173,18,131)]
    

    gradient

    Determines an end-color on the fly for a gradient based on the color parameter. As such, gradient requires color to be present, otherwise the color and gradient will be set to the default color (blue). Cannot be used in conjunction with any of the pre-existing color options (red, yellow, orange or green). When using gradient the color value must be in hexadecimal form.

    Supported values: any positive or negative decimal value from 0.0 to 1.0 or -1.0.

    Examples

    [wppb progress=22 color=#ff0000 gradient=0.2] Displays a red progress bar that gets lighter at the bottom
    
    [wppb progress=22 color=#ff0000 gradient=-0.2] Displays a red progress bar that gets darker at the bottom
    

    This does not work:

    [wppb progress=34 color=rgb(22,18,99) gradient=0.2]
    
    Rate This Plugin

    Please Login to Rate this Plugin!

    Function

    Feature

    Support

    0 Votes
    Not Rated Yet

    Wordpress.org Stats

    Ratings5
    Votes24
    Downloads60,167
    Last Updated344 Days ago
    Published12 years ago

    Report Wrong Category!

    Do you think this Plugin belongs to another Category?

    What Category Should this Plugin belong to? *

    Reason *

    Create a Plugin List

    You need to be Logged in to Create a Plugin List.

    Submit A plugin

    You need to be logged in to submit a plugin.

    Help

    WPD is the unofficial online plugin directory of WordPress.

    An attempt has been made to list Only functional, active,efficient and up-to-date plugins.

    Categorized : Plugin are listed by category and subcategory based on functionality and uses. Here you can browse wordpress plugin from our neatly categorized plugin directory and sort the plugins by rating, votes, last updated and published and search plugins using tags.

    Search : Plugins can be searched by their functionality using multi-tag search and you can search plugins using their exact name although we are not ensuring Google like search accuracy.

    Create Plugin Lists : You will be able to create list of plugins and share them with Wordpress Community or you can keep them private and use them as a bookmarks.
    e.g. Plugins That I’ve Used on My Site, Best Event Management Plugins, Christmas Plugins etc.

    If you think certain awesome plugin is not in the directory then notify us through our Submit a Plugin page.

    Browsing the Plugin Directory

    Browse by Category

    In WPD, Plugins are categorized carefully. You can browse all the categories from the homepage or you can access the category lists from any page by clicking the button from the left of the website.


    Browse by Tags

    Each plugin listed in WPD is marked with useful tags. You can browse plugins by Tags from the All Tags page


    Searching in WPD

    Multi Tag Search

    You can search plugins using multiple tags. To perform a multi-tag search. Go to Homepage and then in the search field type any keywords or tags(comma separated) and then click on the search button. To search plugins from a selected category just select the category from the dropdown and type your tags.


    Searching a specific Plugin in WPD

    If you want to find a specific plugin in our directory, Go to Homepage and then select the "Search in Title" option. Then write the name of the plugin and click the search button to find the Plugin.


    Plugin Lists

    Whats a Plugin List

    Plugin Lists are user created lists of plugins. Any registered users can create Plugin Lists and share it with anyone or make it private.


    Why Create a plugin List?
    • Easy to keep track of your favourite and useful plugin.

    • Share list of plugins on blogs, social media or to a client.

    • Keep a track of what plugins you installed in which of your blogs by creating a list for each blog



    Creating a Plugin List

    To create a Plugin List, click the button from the left of the page; a popup box will appear. In the "List Name" field, put the name of the List. eg: Best Seo plugins for your site.
    In the Description field, put a few words describing the List.
    By default, lists are automatically published as public, which is visible to everyone. If you do not want others to see the List, select "Private" from the dropdown list. Then click the "Create List" button to create the list.


    Adding Plugins to your List

    To add a plugin to your List, go to a plugin page and click the "Add to List" button. A popup box will appear where you can select in which of your list you want to add this plugin. You can add a note if you want, this note will appear below the plugin in your list.
    P.S: You can only add plugins that are in our directory.

    Your Lists will appear in our "Plugin Lists" page when you set the list as "Public" and your list contains atleast 2 plugins.


    Editing your Lists

    When you are on your list page, notice there is a button on the top right corner of the page. Click it to edit the List Name and the List Description.


    Accessing All your Lists

    You can access all your Plugin lists by going to your profile and clicking the "Lists" tab.


    Removing your Lists

    You can remove your Plugin lists by going to your profile and clicking the "Lists" tab. on top right of each list click the button to remove the list completely.

    While tremendous effort has been put to keep this directory precise and complete, still errors and omissions are unavoidable and possible. We welcome any suggestions for corrections, deletions, and idea that might improve the overall experience.

    To submit a Feedback click the from the bottom right corner of the site.

    Brave Popup Builder
    Our Latest WordPress Plugin
    Create Awesome WordPress Popups with Intuitive visual Editor. Choose from hundreds of Presets. Create Beautiful Popups and convert more visitors to subscribers, clients and customers.
    This Popup was Built with this plugin.
    Marketing knowledge
    Upgrade your
    Leverage agile frameworks to provide a robust synopsis for high overviews.
    Register or log in to assess the record