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
This add-on can be treated as both a WP plugin and a theme include.
Plugin
- Copy the 'acf-range' folder into your plugins folder
- Activate the plugin via the Plugins admin page
Include
- Copy the 'acf-range' folder into your theme folder (can use sub folders). You can place the folder anywhere inside the 'wp-content' directory
- 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');
}
`