<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Tag: checkboxes - Recent Topics</title>
		<link>https://legacy.forums.gravityhelp.com/tags/checkboxes</link>
		<description>Gravity Support Forums Tag: checkboxes - Recent Topics</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 16:35:16 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/tags/checkboxes/topics" rel="self" type="application/rss+xml" />

		<item>
			<title>THATRYAN on "Map Checkboxes To User Registration Form?"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/map-checkboxes-to-user-registration-form#post-249728</link>
			<pubDate>Sun, 12 May 2013 23:00:56 +0000</pubDate>
			<dc:creator>THATRYAN</dc:creator>
			<guid isPermaLink="false">249728@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have some custom custom user meta that includes several checkboxes sets, like this, &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://glui.me/?i=gj1vfqgqytxcta3/2013-05-12_at_7.57.38_PM.png/&#34; rel=&#34;nofollow&#34;&#62;http://glui.me/?i=gj1vfqgqytxcta3/2013-05-12_at_7.57.38_PM.png/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;And on the front end I have a user registration (update user) form like so, &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://glui.me/?i=0fz7vv9c8caw6p5/2013-05-12_at_7.58.30_PM.png/&#34; rel=&#34;nofollow&#34;&#62;http://glui.me/?i=0fz7vv9c8caw6p5/2013-05-12_at_7.58.30_PM.png/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;However, there is no option for those form fields in the user registration meta section in here, &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://glui.me/?i=cyubeg45mucai63/2013-05-12_at_7.59.22_PM.png/&#34; rel=&#34;nofollow&#34;&#62;http://glui.me/?i=cyubeg45mucai63/2013-05-12_at_7.59.22_PM.png/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Is it possible to have checkboxes that can update info? &#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>envecreative1 on "Checkboxes Not Displaying"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-not-displaying#post-348329</link>
			<pubDate>Thu, 27 Jun 2013 14:45:23 +0000</pubDate>
			<dc:creator>envecreative1</dc:creator>
			<guid isPermaLink="false">348329@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I know this is probably something silly, but checkboxes don't display on my site. The values do, but not the actual boxes. &#60;a href=&#34;http://oldelibertyins.com/insurance-products/auto-insurance-2/&#34; rel=&#34;nofollow&#34;&#62;http://oldelibertyins.com/insurance-products/auto-insurance-2/&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>sanz on "Getting selected values of checkboxes in gform_pre_submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/getting-selected-values-of-checkboxes-in-gform_pre_submission#post-53245</link>
			<pubDate>Fri, 23 Mar 2012 02:11:57 +0000</pubDate>
			<dc:creator>sanz</dc:creator>
			<guid isPermaLink="false">53245@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hey all ... trying to get the checkbox selected values in the gform_pre_submission filter.&#60;/p&#62;
&#60;p&#62;My checkbox field ID is 8.&#60;/p&#62;
&#60;p&#62;I am looping through the $form['fields'] to isolate just the data in the checkboxes in field 8 like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;foreach($form[&#38;#39;fields&#38;#39;] as &#38;amp;$field) {
	    if($field[&#38;#39;id&#38;#39;] === 8) {
	    	$selectData[&#38;#39;inputs&#38;#39;] = $field[&#38;#39;inputs&#38;#39;];
	    	$selectData[&#38;#39;selections&#38;#39;] = $field[&#38;#39;choices&#38;#39;];
	    }
	}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;$selectData gives me all data like:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;Array
(
    [inputs] =&#38;gt; Array
        (
            [0] =&#38;gt; Array
                (
                    [label] =&#38;gt; Appliances
                    [id] =&#38;gt; 8.1
                )

            [1] =&#38;gt; Array
                (
                    [label] =&#38;gt; Book Stores and Stationary
                    [id] =&#38;gt; 8.2
                )

            [2] =&#38;gt; Array
                (
                    [label] =&#38;gt; Fashion and Accessories
                    [id] =&#38;gt; 8.3
                )

            [3] =&#38;gt; Array
                (
                    [label] =&#38;gt; Food and Beverage
                    [id] =&#38;gt; 8.4
                )

            [4] =&#38;gt; Array
                (
                    [label] =&#38;gt; Home and Living
                    [id] =&#38;gt; 8.5
                )

            [5] =&#38;gt; Array
                (
                    [label] =&#38;gt; Technology
                    [id] =&#38;gt; 8.6
                )

        )

    [selections] =&#38;gt; Array
        (
            [0] =&#38;gt; Array
                (
                    [text] =&#38;gt; Appliances
                    [value] =&#38;gt; 9
                    [isSelected] =&#38;gt;
                )

            [1] =&#38;gt; Array
                (
                    [text] =&#38;gt; Book Stores and Stationary
                    [value] =&#38;gt; 10
                    [isSelected] =&#38;gt;
                )

            [2] =&#38;gt; Array
                (
                    [text] =&#38;gt; Fashion and Accessories
                    [value] =&#38;gt; 8
                    [isSelected] =&#38;gt;
                )

            [3] =&#38;gt; Array
                (
                    [text] =&#38;gt; Food and Beverage
                    [value] =&#38;gt; 6
                    [isSelected] =&#38;gt;
                )

            [4] =&#38;gt; Array
                (
                    [text] =&#38;gt; Home and Living
                    [value] =&#38;gt; 7
                    [isSelected] =&#38;gt;
                )

            [5] =&#38;gt; Array
                (
                    [text] =&#38;gt; Technology
                    [value] =&#38;gt; 15
                    [isSelected] =&#38;gt;
                )

        )

)&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;However in the [selections] array I'm expecting the [isSelected] value to be set to something but it isn't. In the example above the form was submitted with Appliances, Food and Beverage and Home and Living preselected (checked) in the form and then Book Stores and Stationary checked manually.&#60;/p&#62;
&#60;p&#62;What am I missing? The gform_pre_submission filter should have access to all submitted form data shouldn't it?&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lam09 on "HTML5 displaying problems - cannot see check boxes or radio buttons"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/html5-displaying-problems-cannot-see-check-boxes-or-radio-buttons#post-291832</link>
			<pubDate>Fri, 31 May 2013 05:06:30 +0000</pubDate>
			<dc:creator>lam09</dc:creator>
			<guid isPermaLink="false">291832@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've been trying for months now to sort this and I really need help.  See the form here.  I've messed with the CSS and I just cant figure out how to get the radio buttons and check boxes to display.&#60;/p&#62;
&#60;p&#62;I love the way the form looks in preview, but when my sites style sheet is applied it wrecks the form.&#60;/p&#62;
&#60;p&#62;Is there anyway I can ask the form not to use my sites css but to use it's own?&#60;/p&#62;
&#60;p&#62;Here is the form:  &#60;a href=&#34;http://tinyurl.com/c9scdnu&#34; rel=&#34;nofollow&#34;&#62;http://tinyurl.com/c9scdnu&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Roimedia on "Checkbox tooltips"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkbox-tooltips#post-207000</link>
			<pubDate>Fri, 12 Apr 2013 10:29:10 +0000</pubDate>
			<dc:creator>Roimedia</dc:creator>
			<guid isPermaLink="false">207000@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there any way that I can create tooltips next to checkboxes? So if I have a field with a bunch of checkboxes, I'd like to be able to have an extra field for each checkbox along with label and value. Here I'd like to type in some text to be used for the tooltip. In the front end, there should be the list of checkboxes with an &#34;info&#34; icon next to each label. When hovering over it, the text in the additional field should pop up in a tooltip. I don't have problem implementing the jQuery but would like to know how to create this field and pull it into the front end to use.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>batterystudios on "Save checkbox selections into custom usermeta"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/save-checkbox-selections-into-custom-usermeta#post-169119</link>
			<pubDate>Tue, 12 Mar 2013 20:41:28 +0000</pubDate>
			<dc:creator>batterystudios</dc:creator>
			<guid isPermaLink="false">169119@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;1 - Here is a screenshot of the form I am referring to:&#60;br /&#62;
&#60;a href=&#34;http://screencast.com/t/wtybC77Jl&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/wtybC77Jl&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;2 - As you can see, we have multiple checkboxes in a single field entry, and we want to save them into a custom usermeta field:  See screenshot: &#60;a href=&#34;http://screencast.com/t/nGz8Ssoq&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/nGz8Ssoq&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;3 - However, in the Forms &#38;gt; User Registration admin screen the terms themselves (checkbox options) show up as individual options, with no option to store all of the checkbox data in a single field:  See screenshot: &#60;a href=&#34;http://screencast.com/t/RNBVtk4ceuMN&#34; rel=&#34;nofollow&#34;&#62;http://screencast.com/t/RNBVtk4ceuMN&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Can you please advise me on what the best way is to store data from an array of checkboxes into the usermeta, either  as multiple keys or a serialized array?&#60;/p&#62;
&#60;p&#62;Should i create a custom filter instead of using built in functions? If so, how do I save that when the form is submitted?&#60;/p&#62;
&#60;p&#62;Any help you can provide will be most appreciated.&#60;/p&#62;
&#60;p&#62;[ EDIT ]  I am using:&#60;br /&#62;
Gravity Forms latest version (1.6.12)&#60;br /&#62;
User Reg. add-on V. 1.5.beta1&#60;/p&#62;
&#60;p&#62;Note - I am a php programmer so custom coding options are most welcome ~ if this feature is already being worked on, it would be helpful to know what progress you have made so far.  thx
&#60;/p&#62;</description>
		</item>
		<item>
			<title>dochara on "Retrieving selected values of dynamically generated checkboxes"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/retrieving-selected-values-of-dynamically-generated-checkboxes#post-247919</link>
			<pubDate>Sat, 11 May 2013 10:39:14 +0000</pubDate>
			<dc:creator>dochara</dc:creator>
			<guid isPermaLink="false">247919@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a form embeddend in all posts of a custom post type.  In the form is a checkbox group ($field['22']) that is populated dynamically using gform_pre_submission. Its values are the usernames of any registered user who has commented on the post. This is working perfectly.&#60;/p&#62;
&#60;p&#62;Obviously, depending on the number of people who comment, there could be anything from 1 to dozens of options available. I need to take the selected values ONLY and save them to a custom field. &#60;/p&#62;
&#60;p&#62;I am using a function on gform_post_submission already with this form, and it's working fine for other fields,  but I am not clear how to retrieve an array of selected values from this checkbox group to add to a custom field.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>havanaglam on "checkboxes - passing fields via query string issue"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/checkboxes-passing-fields-via-query-string-issue#post-244474</link>
			<pubDate>Thu, 09 May 2013 10:34:49 +0000</pubDate>
			<dc:creator>havanaglam</dc:creator>
			<guid isPermaLink="false">244474@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have a form with a field of type 'Checkboxes' and 3 choices: 'pets', 'view', 'beach'. On submit, I need to pass the 3 choices values via query string to a service outside my domain, say &#60;a href=&#34;http://www.external-service.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.external-service.com/&#60;/a&#62;, so that my values become parameters in a GET request to this domain. &#60;/p&#62;
&#60;p&#62;For instance, if a user checks 'pets' and 'view', on submit I want this user to be redirected to:&#60;br /&#62;
 &#60;a href=&#34;http://www.external-service.com/?pets=1&#38;amp;view=1&#38;amp;beach=&#34; rel=&#34;nofollow&#34;&#62;http://www.external-service.com/?pets=1&#38;amp;view=1&#38;amp;beach=&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I tried to accomplish this by checking 'show values' box and then setting all my choices values to '1', but it wouldn't work.&#60;/p&#62;
&#60;p&#62;How can I accomplish this, then?&#60;/p&#62;
&#60;p&#62;Thank you very much
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Marc Koetsier on "Not all the selected values from checkboxes are being saved to the database"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/not-all-the-selected-values-from-checkboxes-are-being-saved-to-the-database#post-137464</link>
			<pubDate>Thu, 31 Jan 2013 10:30:59 +0000</pubDate>
			<dc:creator>Marc Koetsier</dc:creator>
			<guid isPermaLink="false">137464@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;So i have checkbox field in my form. I dynamically populate data into the checkbox. See following code:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://pastie.org/private/vq7jjiojoln0844iqyjq#26,28&#34; rel=&#34;nofollow&#34;&#62;http://pastie.org/private/vq7jjiojoln0844iqyjq#26,28&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Basically, I am getting all custom type posts &#34;Workshops&#34; and populating the checkbox field with the value for each input being the post's title.&#60;/p&#62;
&#60;p&#62;But when i submit the form, not all the selected values are saved into the database.&#60;/p&#62;
&#60;p&#62;I referred to &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Dynamically_Populating_Drop_Down_Fields&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Dynamically_Populating_Drop_Down_Fields&#60;/a&#62; and copy pasting the code from the article yeilds the same result.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>kyle on "Passing Dynamic Checkboxes to Confirmation Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/passing-dynamic-checkboxes-to-confirmation-page#post-199134</link>
			<pubDate>Sat, 06 Apr 2013 20:05:01 +0000</pubDate>
			<dc:creator>kyle</dc:creator>
			<guid isPermaLink="false">199134@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I originally had a form where I manually entered some PDFs that you could choose to download.  Some of the PDFs required authorization before they could be downloaded, so the Confirmation page handled that (based on which PDFs were requested - data that got sent by using the &#34;Pass Field Data Via Query String&#34;) component of the Confirmation Page settings.  &#60;/p&#62;
&#60;p&#62;NOW, I'd like to make this automatic - we're using a downloads plugin, and whenever a PDF is added to the downloads plugin, it automatically appears as a checkbox item in the form.  This is working perfectly, and the data gets submitted to the form entries.  The problem, however, is that I'm no longer sure how I can send which PDFs were downloaded to the Confirmation page - since I can't manually choose them from the &#34;Insert Merge Tag&#34; dropdown.  Is there a PHP action/filter I can use to do this?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
