Plugin info

Total downloads: 6,066
Active installs: 80
Total reviews: 2
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 8/30/2014 (4141 days ago)
Added to WordPress: 12/23/2013 (12 years old)
Minimum WordPress version: 3.0.1
Tested up to WordPress version: 3.9.40
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 4141 days ago • 2 reviews

22/100

Is Advanced Custom Fields: Range Field abandoned?

Possibly abandoned (last update 4141 days ago).

Compatibility

Requires WordPress: 3.0.1
Tested up to: 3.9.40
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Disable Variable Product Price Range Woocommerce
Rating 3.7/5 (6 reviews)Active installs 2,000
WPC Smart Price Filter for WooCommerce
Rating 5.0/5 (2 reviews)Active installs 700
Range Slider Addon for ACF
Rating 0.0/5 (0 reviews)Active installs 40
wp date range
Rating 2.3/5 (3 reviews)Active installs 10
Simple Range Slider for Gravityforms
Rating 2.0/5 (3 reviews)Active installs 10

Description

This is an add-on for the Advanced Custom Fields WordPress plugin, that allows you to add a jQuery Range Slider field type. http://jqueryui.com/slider/

Read more here: https://github.com/viriava/acf-field-range

Installation

This add-on can be treated as both a WP plugin and a theme include.

Plugin

  1. Copy the ‘acf-range’ folder into your plugins folder
  2. Activate the plugin via the Plugins admin page

Include

  1. Copy the ‘acf-range’ folder into your theme folder (can use sub folders). You can place the folder anywhere inside the ‘wp-content’ directory
  2. Edit your functions.php file and add the code below (Make sure the path is correct to include the acf-range.php file)

    add_action(‘acf/register_fields’, ‘my_register_fields’);

    function my_register_fields()
    {
    include_once(‘acf-range/acf-range.php’);
    }

Frequently Asked Questions

What does it return?

If the type is Default, it returns the number.

If the type is Range, it returns an array of minimum and maximum numbers.

    array(2) { 
        ["min"]=> float(0) 
        ["max"]=> float(0) 
    }

Review feed

No reviews available

Screenshots

  1. Default look

    Default look

Changelog

1.1.4

  • If a new post/page is created with a range field the default value is not returned since the user change the slider. I have changed the code so that the default value is returned if the user doesn’t change the slider.

1.1.3

  • ACF5 compatible

1.1.2

  • ZERO bug fixed

1.1.1

  • Updated parseInt to parseFloat

1.1.0

  • Added descriptions for fields
  • Added default values
  • Updated prepend and append functionality

1.0.0

  • Initial version