All Projects → kevinruscoe → Acf Star Rating Field

kevinruscoe / Acf Star Rating Field

Licence: mit
A simple star rating field for ACF.

Projects that are alternatives of or similar to Acf Star Rating Field

Fewbricks
Write code to create ACF field groups, fields and re-usable modules.
Stars: ✭ 100 (+6.38%)
Mutual labels:  wordpress, acf, wordpress-plugin
Acf Codifier
A wrapper class to help write more readable ACF field declarations.
Stars: ✭ 114 (+21.28%)
Mutual labels:  wordpress, acf, wordpress-plugin
Acf To Rest Api
Exposes Advanced Custom Fields Endpoints in the WordPress REST API
Stars: ✭ 1,152 (+1125.53%)
Mutual labels:  wordpress, acf, wordpress-plugin
Snowball
A WordPress plugin for making immersive longform articles
Stars: ✭ 81 (-13.83%)
Mutual labels:  wordpress, wordpress-plugin
Code Prettify
WordPress plugin for automatic code highlighting using the Prettify library. No shortcodes, no classnames, pure awesome.
Stars: ✭ 79 (-15.96%)
Mutual labels:  wordpress, wordpress-plugin
Wp Plugin Git Svn Sync
☄️ Zero config synchronizing of Git repository with SVN for publishing WordPress plugins.
Stars: ✭ 81 (-13.83%)
Mutual labels:  wordpress, wordpress-plugin
Wpintel
Chrome extension designed for WordPress Vulnerability Scanning and information gathering!
Stars: ✭ 70 (-25.53%)
Mutual labels:  wordpress, wordpress-plugin
Wp Sitemaps
Proposal to integrate basic XML Sitemaps in WordPress Core
Stars: ✭ 94 (+0%)
Mutual labels:  wordpress, wordpress-plugin
Bigcommerce For Wordpress
A headless commerce integration for WordPress, powered by BigCommerce
Stars: ✭ 82 (-12.77%)
Mutual labels:  wordpress, wordpress-plugin
Searchwp Live Ajax Search
[WordPress Plugin] Enhance your search forms with live search (utilizes SearchWP if installed)
Stars: ✭ 91 (-3.19%)
Mutual labels:  wordpress, wordpress-plugin
Popup Maker
Popup Maker plugin for WordPress
Stars: ✭ 87 (-7.45%)
Mutual labels:  wordpress, wordpress-plugin
Cve 2018 20555
Social Network Tabs Wordpress Plugin Vulnerability - CVE-2018-20555
Stars: ✭ 78 (-17.02%)
Mutual labels:  wordpress, wordpress-plugin
Mainwp Child
The MainWP Child plugin is installed on the WordPress sites that you want to control from the MainWP Dashboard.
Stars: ✭ 74 (-21.28%)
Mutual labels:  wordpress, wordpress-plugin
Wp Less
WordPress plugin which seemlessly compiles, caches and rebuilds your LESS stylesheets.
Stars: ✭ 88 (-6.38%)
Mutual labels:  wordpress, wordpress-plugin
Kirki
Extending the customizer
Stars: ✭ 1,175 (+1150%)
Mutual labels:  wordpress, wordpress-plugin
Cache Buddy
#WordPressPlugin: makes more WordPress pages cacheable
Stars: ✭ 82 (-12.77%)
Mutual labels:  wordpress, wordpress-plugin
Remove Comments Absolutely
WordPress Plugin to deactivate comments functions and remove areas absolute form the WordPress install
Stars: ✭ 86 (-8.51%)
Mutual labels:  wordpress, wordpress-plugin
Plugin.wordpress
📦 Official WordPress Plugin of EnlighterJS
Stars: ✭ 93 (-1.06%)
Mutual labels:  wordpress, wordpress-plugin
Wp Functions List
This is a list of all WordPress functions from version 0 to version 4.8.1 along with the data of when they were first introduced and if they are deprecated or not
Stars: ✭ 88 (-6.38%)
Mutual labels:  wordpress, wordpress-plugin
Query Monitor
The Developer Tools Panel for WordPress
Stars: ✭ 1,156 (+1129.79%)
Mutual labels:  wordpress, wordpress-plugin

ACF Star Rating Field

A simple star rating field for ACF.


Compatibility

This ACF field type is compatible with:

  • ACF 5

Usage

In the admin

Fields are presented like:

alt text

In your site

The plugin simply provides a interactive star-rating field in the WP admin. The value returned is bog-standard int. The reason for this is you may want to rate your things visually different on your website (i.e. giving something 3/5 pies, rather than 3/5 stars). So just write a simple loop to display, like:

$rating = get_field('rating');

for ($i = 0; $i < $rating; $i++) {
    print "<img src='rotating-pie.gif'>";
}

Installation

  1. Download the repo and move it into your wp-content/plugins folder
  2. Activate the Star Rating plugin via the plugins admin page
  3. Create a new field via ACF and select the Star Rating type

PR very much welcome!

Bugs fixes are very much welcome. If you have a feature request, please open an issue before writing your code!

Need this tweaking?

Drop me an email [email protected] and we'll sort something out.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].