Rating: 3 stars
This looks and appears nicely on Gravity Forms. However, I have calculated fields and it’s only taking the default value I’ve set and not the updated value. My confirmation message repeats the slider value… and it’s not the actual slider value it’s the default.
]]>Rating: 5 stars
Works just fine and the right amount of settings.
]]>Rating: 5 stars
Works great and extended the functionality of Gravity Forms.
]]>Rating: 2 stars
This has been a timely solution to be able to capture user data through a slider field. Almost all options are customizable, although I had to edit the css file in order to change the fill color of the field.
Update:december 2021:
This plugin worked fine until WordPress stopped supporting old versions of jquery. From then on, I am experiencing problems with the plugins. This plugin was apparently abandoned by its author. Too bad, since it was great!
]]>Rating: 4 stars
Does what it says it should. A bit confusing to use at first but once you get over the learning curb it’s great. More Docs would be awesome!
]]>Rating: 5 stars
Good Plugin
]]>Rating: 5 stars
Nice Likert scale add-on to Gravity Forms. Surprising that this isn’t part of the GF package, actually.
Does what it says, and quite easy to customize CSS.
]]>Rating: 5 stars
Great plugin for adding interactivity to Gravity Forms. My only issue is I wanted to make a donation for this plugin, but have to put in credit card information vs. being able to make donation via paypal or some other method.
Update: 12/29/19 – See comment below and use that link to make a donation via paypal. Thank again for creating an awesome plugin Joshua.
Update: 2/5/20 – Feature request for plugin would be to make sure it’s compatible with conditional logic. I ran into my first situation last night where I needed to set conditional logic based on a slider value only to find that any slider I create does not show up when creating conditions.
]]>Rating: 5 stars
Посмотрите перевод. Добавил русский.
]]>Rating: 5 stars
Why on earth would GF not have their own slider in the plugin?
I asked this question from GF and the response was about “there’s already a plugin that’s doing it’s job so it’s not a development priority”.
So, basically, GF is recommending this plugin. Lol, what a weird scenario.
THANK YOU! ??
]]>Rating: 5 stars
Works perfectly and its options are very intuitive.
]]>Rating: 5 stars
Thx
]]>Rating: 5 stars
Hard to believe that Gravity form does not have this by default, thanks for making this!
]]>Rating: 5 stars
Works well with the latest version of Gravity Forms and WordPress, does exactly what it says on the box.
My minor gripes/suggestions are:
All in all, a great plugin that adds a feature that really, for $200/yr, Gravity Forms should figure out how to develop themselves. Thanks to the plugin developer for making it for free.
—
EDIT: For anyone else looking to remove decimals in the currency formatting, here’s how I did it.
First, two disclaimers:
Change line 212 of the plugin’s gravity-slider-fields.php from:
wp_enqueue_script( 'gslider-fields', GSF_DIR_URL . 'slider.js', array( 'jquery', 'noUiSlider' ), GSF_VERSION );
to
wp_enqueue_script( 'gslider-fields', GSF_DIR_URL . 'slider.min.js', array( 'jquery', 'noUiSlider' ), GSF_VERSION );
Then change line 90 of the plugin’s slider.js from:
decimals: currency['decimals'],
to
decimals: 0,
Voila! You’ve got currency formatting without decimals. For now.