<?xml version="1.0" encoding="UTF-8"?>        <rss version="2.0"
             xmlns:atom="http://www.w3.org/2005/Atom"
             xmlns:dc="http://purl.org/dc/elements/1.1/"
             xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
             xmlns:admin="http://webns.net/mvcb/"
             xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
             xmlns:content="http://purl.org/rss/1.0/modules/content/">
        <channel>
            <title>
									wpForo Topic Custom Fields - gVectors Team - Forum				            </title>
            <link>https://gvectors.com/forum/wpforo-topic-custom-fields/</link>
            <description>WordPress Plugins Support Forum</description>
            <language>en-US</language>
            <lastBuildDate>Mon, 13 Apr 2026 08:05:18 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>Moderator able to switch groups for end users front side</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/moderator-able-to-switch-groups-for-end-users-front-side/</link>
                        <pubDate>Mon, 09 Mar 2026 14:54:32 +0000</pubDate>
                        <description><![CDATA[Sorry, this is so long. I am using a checkbox User Field to manage secondary user groups from the front end.
I do not want my moderators to have back-end access, just todo this one task. My...]]></description>
                        <content:encoded><![CDATA[<p>Sorry, this is so long. I am using a checkbox User Field to manage secondary user groups from the front end.</p>
<p>I do not want my moderators to have back-end access, just todo this one task. My platform is much more SEC by doing it from the front side<br /><br />I have created a custom checkbox field that is only visible and editable by moderators and admins. The end user does not have permission to edit the field</p>
<p>I already have the checkbox field ID and the corresponding user group IDs. <br /><br />I need the specific code snippet or hook to ensure that when a moderator selects a checkbox (on the user's profile) and saves the user profile, the user is automatically added to the secondary user group in the database. The end user cannot edit this.<br /><br />1. Custom checkbox field created in User Fields.<br />2. Permissions set to moderator and admin only.<br />3. Field ID and user group IDs are identified.<br />4. Goal is to sync the custom checkbox to save when the moderator updates, when the profile is saved.<br /><br />Please see the current code I am using below.</p>
<p>I need the specific code snippet or hook to ensure that when a moderator selects a checkbox and saves the user profile, the user is automatically added to that secondary user group in the database.<br /><br />Please see the current code I am using below.</p>
<div class="code-block ng-tns-c2432481757-103 ng-animate-disabled ng-trigger ng-trigger-codeBlockRevealAnimation" data-hveid="0" data-ved="0CAAQhtANahgKEwia2bC5_5KTAxUAAAAAHQAAAAAQigI">
<div class="formatted-code-block-internal-container ng-tns-c2432481757-103">
<div class="animated-opacity ng-tns-c2432481757-103">
<pre class="ng-tns-c2432481757-103" contenteditable="false"><code class="code-container formatted ng-tns-c2432481757-103 no-decoration-radius" role="text" data-test-id="code-content">add_action('wpforo_after_update_user', function($user_id) {
    // 1. GATEKEEPER SECURITY: Only allow Admins or Gatekeepers
    if (!current_user_can('moderate_comments') &amp;&amp; !current_user_can('manage_options')) return;

    // 2. THE MAP: "Label in Field" =&gt; "wpForo Group ID"
    $field_key = 'field_6d80de0';
    $group_map = ;

    // 3. CAPTURE DATA FROM THE WPFORO-SPECIFIC ARRAY
    $selected_labels = [];
    
    if (isset($_POST)) {
        $selected_labels = (array)$_POST;
    } elseif (isset($_POST)) {
        $selected_labels = (array)$_POST;
    }

    // Safety: If the field isn't in the submission, don't change anything
    if (empty($selected_labels) &amp;&amp; !isset($_POST)) return;

    // 4. SYNC TO WPFORO SECONDARY GROUPS
    if (function_exists('WPF')) {
        $member = WPF()-&gt;member-&gt;get_member($user_id);
        if (!$member) return;

        // Current secondary groups (wpForo stores these as an array of IDs)
        $current_secondary = !empty($member) ? (array)$member : [];

        foreach ($group_map as $label =&gt; $group_id) {
            if (in_array(trim($label), array_map('trim', $selected_labels))) {
                // Add if checked and missing
                if (!in_array($group_id, $current_secondary)) {
                    $current_secondary[] = $group_id;
                }
            } else {
                // Remove if unchecked (only for these 4 managed groups)
                $current_secondary = array_diff($current_secondary, );
            }
        }

        // 5. THE FINAL FIRE: Update the database and clear forum cache
        WPF()-&gt;member-&gt;update($user_id, );
        WPF()-&gt;member-&gt;reset($user_id);
    }
}, 10);
</code></pre>
</div>
</div>
</div>
<p data-path-to-node="5">Thank you!</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Danno61</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/moderator-able-to-switch-groups-for-end-users-front-side/</guid>
                    </item>
				                    <item>
                        <title>About me section in profile not showing</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/about-me-section-in-profile-not-showing/</link>
                        <pubDate>Sun, 26 Oct 2025 16:29:28 +0000</pubDate>
                        <description><![CDATA[I recently purchased and installed the wpForo Buyer Custom Fields (UCF) addon for my website and I’ve encountered a recurring issue with the “About Me” section on member profiles.Here’s what...]]></description>
                        <content:encoded><![CDATA[<p><span>I recently purchased and installed the </span><span class="outlook-search-highlight" data-markjs="true">wpForo</span><span> Buyer Custom Fields (UCF) addon for my website (</span><a title="https://mastersotl.com/" href="https://mastersotl.com/" data-ogsc="">https://mastersotl.com/</a><span>), and I’ve encountered a recurring issue with the “About Me” section on member profiles.</span><br /><span>Here’s what’s happening: When the UCF plugin is active, only admins can see the “c” field on member profiles. Regular registered users cannot see other members’ “About Me” fields, even though their user group permissions in </span><span class="outlook-search-highlight" data-markjs="true">wpForo</span><span> are fully enabled (they have full view access for profiles and all fields). When I deactivate the UCF plugin, the “About Me” section immediately becomes visible to everyone again, just as it should. I also tried creating a new ‘textarea' field using the UCF addon and named it “About Me.” I added it to the Profile Page, set it to be visible to all users, and cleared all caches, but it still doesn’t show up for regular users. It seems that activating the UCF addon hides or overrides the visibility of the “About Me” field for non-admin members. Could you please look into this issue or let me know if there’s a fix or update that resolves it?</span></p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Omar Saeed</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/about-me-section-in-profile-not-showing/</guid>
                    </item>
				                    <item>
                        <title>How to reset License&#039;s from staging to live site?</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/how-to-reset-licenses-from-staging-to-live-site/</link>
                        <pubDate>Thu, 02 Oct 2025 14:55:15 +0000</pubDate>
                        <description><![CDATA[I purchased four addons, order #261332250 and activated two of them while building my site on the hosts staging area (WPMU DEV hosting uses the tempurl.host domain before site is live).
Now...]]></description>
                        <content:encoded><![CDATA[<p>I purchased four addons, order #261332250 and activated two of them while building my site on the hosts staging area (WPMU DEV hosting uses the tempurl.host domain before site is live).</p>
<p>Now that I've switched it live on my real domain, the plugins still work but I can't enter the license number because it was already entered on staging.</p>
<p>I don't see an area in my wpforo or gvectors account to assign a license to a domain, or reset?</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Damon Linkous</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/how-to-reset-licenses-from-staging-to-live-site/</guid>
                    </item>
				                    <item>
                        <title>Problem with “wpForo - Topic Custom Fields” Plugin – No Support Available</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/problem-with-wpforo-topic-custom-fields-plugin-no-support-available/</link>
                        <pubDate>Mon, 26 May 2025 17:17:15 +0000</pubDate>
                        <description><![CDATA[Hello,
After scanning my website using Wordfence, I received the following message:“It appears that the plugin &#039;wpForo - Topic Custom Fields&#039; has been abandoned (last updated 2023-05-24, te...]]></description>
                        <content:encoded><![CDATA[<p data-start="875" data-end="883">Hello,</p>
<p data-start="885" data-end="1122">After scanning my website using Wordfence, I received the following message:<br data-start="961" data-end="964" />“It appears that the plugin 'wpForo - Topic Custom Fields' has been abandoned (last updated 2023-05-24, tested up to WP 6.4). Type: Plugin with no support.”</p>
<p data-start="1124" data-end="1275">Could someone explain exactly what this message means?<br data-start="1178" data-end="1181" />Should I stop using this plugin, or are there any recommendations regarding its further use?</p>
<p data-start="1277" data-end="1314">Thank you in advance for your help!</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Zygzak</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/problem-with-wpforo-topic-custom-fields-plugin-no-support-available/</guid>
                    </item>
				                    <item>
                        <title>How to format a new field for Topic Custom Fields?</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/how-to-format-a-new-field-for-topic-custom-fields/</link>
                        <pubDate>Mon, 24 Mar 2025 16:16:58 +0000</pubDate>
                        <description><![CDATA[Hi,
Is it possible to format a field for a price, using the Topic Custom Fields add-on?
I would like to set the field like &quot;99.00$&quot; if someone enter &quot;99&quot;. Actually, the field just show &quot;99...]]></description>
                        <content:encoded><![CDATA[<p>Hi,</p>
<p>Is it possible to format a field for a price, using the Topic Custom Fields add-on?</p>
<p>I would like to set the field like "99.00$" if someone enter "99". Actually, the field just show "99"</p>
<p>Is there a documentation for that ?</p>
<p>Regards,</p>
<p>Yves</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Yves MARTIN</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/how-to-format-a-new-field-for-topic-custom-fields/</guid>
                    </item>
				                    <item>
                        <title>I created a field. but after deleating the field it is still visable.</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/i-created-a-field-but-after-deleteing-the-field-it-is-still-visable/</link>
                        <pubDate>Fri, 27 Dec 2024 20:32:50 +0000</pubDate>
                        <description><![CDATA[]]></description>
                        <content:encoded><![CDATA[7512]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Jeanette Dicke</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/i-created-a-field-but-after-deleteing-the-field-it-is-still-visable/</guid>
                    </item>
				                    <item>
                        <title>Place custom fields above thread content?</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/place-custom-fields-above-thread-content/</link>
                        <pubDate>Sat, 07 Dec 2024 00:01:08 +0000</pubDate>
                        <description><![CDATA[Is there a way to get the fields users have field out to show before the content of the post they write when creating a topic?]]></description>
                        <content:encoded><![CDATA[<p>Is there a way to get the fields users have field out to show before the content of the post they write when creating a topic?</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Kelly Peterson</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/place-custom-fields-above-thread-content/</guid>
                    </item>
				                    <item>
                        <title>Can I make multiple checkbox choices mandatory?</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/can-i-make-multiple-checkbox-choices-mandatory/</link>
                        <pubDate>Tue, 24 Sep 2024 03:40:18 +0000</pubDate>
                        <description><![CDATA[Can I make multiple checkbox choices mandatory?for exampleconfirmation&#x2611; I agree to the terms of use * &#x2611; Once your question is resolved, change the topic status ...]]></description>
                        <content:encoded><![CDATA[<p>Can I make multiple checkbox choices mandatory?<br /><br />for example<br /><br /><strong>confirmation</strong><br />&#x2611; I agree to the terms of use <span style="color: #ff0000">*</span> <br />&#x2611; Once your question is resolved, change the topic status to resolved <span style="color: #ff0000">*</span> <br />&#x2611; I searched for similar topics <br /><br />An error will occur if both the first and second checkboxes are not filled in.<br /><br />Please help me.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>kikorist</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/can-i-make-multiple-checkbox-choices-mandatory/</guid>
                    </item>
				                    <item>
                        <title>Where in the database are the custom topics field entries stored?</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/where-in-the-database-are-the-custom-topics-field-entries-stored/</link>
                        <pubDate>Mon, 16 Sep 2024 21:02:50 +0000</pubDate>
                        <description><![CDATA[I am using a database plugin to try to extract topic entries from the database. It can find the table wp_wpforo_posts and view the html it contains, but those rows don&#039;t include the custom t...]]></description>
                        <content:encoded><![CDATA[<p>I am using a database plugin to try to extract topic entries from the database. It can find the table wp_wpforo_posts and view the html it contains, but those rows don't include the custom topic fields and their data. What table in the database contains that information? Thank you.</p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Kim Dailey</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/where-in-the-database-are-the-custom-topics-field-entries-stored/</guid>
                    </item>
				                    <item>
                        <title>Cant Delete Twitter Links</title>
                        <link>https://gvectors.com/forum/wpforo-topic-custom-fields/cant-delete-twitter-links/</link>
                        <pubDate>Wed, 28 Feb 2024 15:46:15 +0000</pubDate>
                        <description><![CDATA[I am trying to get rid of twitter links in members profiles. But the software is buggy....
I try deleting the members feild, and though it can&#039;t be seen o the forum users profile page, it i...]]></description>
                        <content:encoded><![CDATA[<p>I am trying to get rid of twitter links in members profiles. But the software is buggy....</p>
<p>I try deleting the members feild, and though it can't be seen o the forum users profile page, it is still being picked up by broken link checkers. </p>
<p>I even try deleting the link in the actual profile, but when I press save, the link comes back, it cant be deleted. How can I fix this bug? </p>]]></content:encoded>
						                            <category domain="https://gvectors.com/forum/wpforo-topic-custom-fields/">wpForo Topic Custom Fields</category>                        <dc:creator>Macky</dc:creator>
                        <guid isPermaLink="true">https://gvectors.com/forum/wpforo-topic-custom-fields/cant-delete-twitter-links/</guid>
                    </item>
							        </channel>
        </rss>
		