<?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>
									UM Integration - ordering of topics / replies / subscriptions - wpForo Integration				            </title>
            <link>https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 12 Sep 2026 08:28:12 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: UM Integration - ordering of topics / replies / subscriptions</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17725</link>
                        <pubDate>Thu, 19 Jul 2018 15:42:09 +0000</pubDate>
                        <description><![CDATA[Works great @robert. Thanks]]></description>
                        <content:encoded><![CDATA[<p>Works great @robert. Thanks</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>Anonymous3542</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17725</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - ordering of topics / replies / subscriptions</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17713</link>
                        <pubDate>Thu, 19 Jul 2018 14:24:41 +0000</pubDate>
                        <description><![CDATA[For the replies function please use this:&#039;userid&#039; =&gt; $user_id,&#039;orderby&#039; =&gt; &#039;`created` DESC&#039;,]]></description>
                        <content:encoded><![CDATA[<p>For the replies function please use this:</p><pre><span style="color: #c64741">'userid' </span><span style="color: #000080">=&gt; </span><span style="color: #4985c9;font-weight: bold">$user_id</span><span style="color: #000080">,<br /></span><span style="color: #c64741">'orderby' </span><span style="color: #000080">=&gt; </span><span style="color: #c64741">'`created` DESC'</span><span style="color: #000080">,</span></pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17713</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - ordering of topics / replies / subscriptions</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17656</link>
                        <pubDate>Thu, 19 Jul 2018 08:09:40 +0000</pubDate>
                        <description><![CDATA[Thanks @robert,Seems to work for the most part, but this function (replies) seems to have little effect function um_user_replies( $args ) {$user_id = um_user(&#039;ID&#039;);if(isset($_GET...]]></description>
                        <content:encoded><![CDATA[<p>Thanks @robert,</p><p>Seems to work for the most part, but this function (replies) seems to have little effect</p><pre> function um_user_replies( $args ) {<br />$user_id = um_user('ID');<br />if(isset($_GET) &amp;&amp; intval($_GET)) $paged = intval($_GET);<br />$paged = (isset($paged) &amp;&amp; $paged) ? $paged : 1;<br />$args = array(<br />'offset' =&gt; ($paged - 1) * WPF()-&gt;post-&gt;options,<br />'row_count' =&gt; WPF()-&gt;post-&gt;options,<br />'userid' =&gt; $user_id,<br />'orderby' =&gt; 'modified',<br />'check_private' =&gt; true<br />);</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>Anonymous3542</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17656</guid>
                    </item>
				                    <item>
                        <title>RE: UM Integration - ordering of topics / replies / subscriptions</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17654</link>
                        <pubDate>Thu, 19 Jul 2018 07:49:42 +0000</pubDate>
                        <description><![CDATA[Try adding one more attribute in get_topics() and get_posts() functions. Open this file: /wpforo/wpf-includes/integration/ultimate-member.phpFind all this rows:&#039;userid&#039; =&gt; $user_id,Add on...]]></description>
                        <content:encoded><![CDATA[<p>Try adding one more attribute in get_topics() and get_posts() functions. Open this file:</p><p><span style="color: #993300"> /wpforo/wpf-includes/integration/</span><span style="color: #0000ff">ultimate-member.php</span></p><p>Find all this rows:</p><pre><span style="color: #c64741">'userid' </span><span style="color: #000080">=&gt; </span><span style="color: #4985c9;font-weight: bold">$user_id</span><span style="color: #000080">,</span></pre><p>Add one more row below for all of them:</p><pre><span style="color: #c64741">'userid' </span><span style="color: #000080">=&gt; </span><span style="color: #4985c9;font-weight: bold">$user_id</span><span style="color: #000080">,<br /></span><span style="color: #c64741">'orderby' </span><span style="color: #000080">=&gt; </span><span style="color: #c64741">'modified'</span><span style="color: #000080">,</span></pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>Robert</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17654</guid>
                    </item>
				                    <item>
                        <title>UM Integration - ordering of topics / replies / subscriptions</title>
                        <link>https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17598</link>
                        <pubDate>Tue, 17 Jul 2018 09:25:24 +0000</pubDate>
                        <description><![CDATA[@robert is there any way we can change the ordering of the above so they are in date order ? There doesn&#039;t seem to be a way of doing this via the GUI, so I expect it&#039;s a code alteration for ...]]></description>
                        <content:encoded><![CDATA[<p>@robert is there any way we can change the ordering of the above so they are in date order ? There doesn't seem to be a way of doing this via the GUI, so I expect it's a code alteration for the MySQL query that returns the data... ?</p><p> </p><p>Thanks</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/wpforo-integration/">wpForo Integration</category>                        <dc:creator>Anonymous3542</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/wpforo-integration/um-integration-ordering-of-topics-replies-subscriptions/#post-17598</guid>
                    </item>
							        </channel>
        </rss>
		