<?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>
									2 smaller Problems/Question with Profile and Likes - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Sat, 05 Sep 2026 17:55:04 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: 2 smaller Problems/Question with Profile and Likes</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116674</link>
                        <pubDate>Fri, 09 Aug 2024 17:23:44 +0000</pubDate>
                        <description><![CDATA[@tutrix thank you]]></description>
                        <content:encoded><![CDATA[@tutrix thank you]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Pablo</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116674</guid>
                    </item>
				                    <item>
                        <title>RE: 2 smaller Problems/Question with Profile and Likes</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116656</link>
                        <pubDate>Fri, 09 Aug 2024 15:03:12 +0000</pubDate>
                        <description><![CDATA[@pablo 
This issue exists since the update to version 2.3.5 and will surely be fixed in the next update.Until then, you can use this CSS code
#wpforo #wpforo-wrap .wpforo-post .wpforo-post...]]></description>
                        <content:encoded><![CDATA[<p>@pablo </p>
<p>This issue exists since the update to version 2.3.5 and will surely be fixed in the next update.<br />Until then, you can use this CSS code</p>
<pre contenteditable="false">#wpforo #wpforo-wrap .wpforo-post .wpforo-post-footer .reacted-users a{margin:0 4px;}</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Tutrix</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116656</guid>
                    </item>
				                    <item>
                        <title>RE: 2 smaller Problems/Question with Profile and Likes</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116643</link>
                        <pubDate>Fri, 09 Aug 2024 14:50:38 +0000</pubDate>
                        <description><![CDATA[Hello, thanks for your help to you both. Worked.
Btw: is there also a workaround for the missing spaces between name and „reacted“ where its displayed who reacted.]]></description>
                        <content:encoded><![CDATA[<p>Hello, thanks for your help to you both. Worked.</p>
<p>Btw: is there also a workaround for the missing spaces between name and „reacted“ where its displayed who reacted.</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Pablo</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116643</guid>
                    </item>
				                    <item>
                        <title>RE: 2 smaller Problems/Question with Profile and Likes</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116494</link>
                        <pubDate>Fri, 09 Aug 2024 11:08:34 +0000</pubDate>
                        <description><![CDATA[@pablo 
Robert&#039;s post is from 2017 and no longer up to date.It is missing /* Received Dislikes */, which causes the following to be hidden incorrectlyThe correct child order looks like this...]]></description>
                        <content:encoded><![CDATA[<p>@pablo </p>
<p>Robert's post is from 2017 and no longer up to date.<br />It is missing <span style="color: #ff0000">/* Received Dislikes */</span>, which causes the following to be hidden incorrectly<br /><br />The correct child order looks like this</p>
<pre contenteditable="false">/* Posts */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(1){display:none;}

/* Topics */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(2){display:none;}

/* Questions */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(3){display:none;}

/* Answers */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(4){display:none;}

/* Question Comments */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(5){display:none;}

/* Liked */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(6){display:none;}

/* Received likes */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(7){display:none;}

/* Received Dislikes */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(8){display:none;}

/* Rating */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(9){display:none;}

/* Blog Posts */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(10){display:none;}

/* Blog Comments */
#wpforo #wpforo-wrap .wpf-profile-section .wpf-statbox:nth-child(11){display:none;}</pre>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Tutrix</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116494</guid>
                    </item>
				                    <item>
                        <title>RE: 2 smaller Problems/Question with Profile and Likes</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116493</link>
                        <pubDate>Fri, 09 Aug 2024 09:40:24 +0000</pubDate>
                        <description><![CDATA[Hi Paul,
If you want to hide the sections, please follow the solution provided by Robert here: 

2. when someone likes a post, there is only shown: user x reacted. How can i display if th...]]></description>
                        <content:encoded><![CDATA[<p>Hi Paul,</p>
<p>If you want to hide the sections, please follow the solution provided by Robert here: </p>
<p>https://wpforo.com/community/how-to-and-troubleshooting-2/disabling-specific-statistics-displaying/#post-10142</p>
<blockquote>
<p>2. when someone likes a post, there is only shown: user x reacted. How can i display if the user liked or diskliked?</p>
</blockquote>
<p><span>I'm sorry, but the information about like/dislike will be only displayed for the post owner in the notification section. We'll show more information on the post screen in the near future. Currently, there is no option.</span></p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Sofy</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116493</guid>
                    </item>
				                    <item>
                        <title>2 smaller Problems/Question with Profile and Likes</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116491</link>
                        <pubDate>Thu, 08 Aug 2024 17:40:06 +0000</pubDate>
                        <description><![CDATA[First I want to thank you for you awesome boardsoftware, just migrated from anspress, what a huge difference.
I have 2 smaller problems i dont know how to change.
1. how can i change the i...]]></description>
                        <content:encoded><![CDATA[<p>First I want to thank you for you awesome boardsoftware, just migrated from anspress, what a huge difference.</p>
<p>I have 2 smaller problems i dont know how to change.</p>
<p>1. how can i change the infos in profile and how is it counted? I dont want to show all stats, because i think they are not all relevant. Like for what is blogpost and blog comments? What is the differnce between all the like stats?</p>
<p><br /><img src="https://i.postimg.cc/mgz67HcS/IMG-9720.jpg" /></p>
<p>2. when someone likes a post, there is only shown: user x reacted. How can i display if the user liked or diskliked?</p>
<p><img src="https://i.postimg.cc/GmWgKmGn/IMG-9721.jpg" /></p>
<p>thank you for your help!</p>
<p> </p>
<p>Paul</p>
<p> </p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Pablo</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/2-smaller-problems-question-with-profile-and-likes/#post-116491</guid>
                    </item>
							        </channel>
        </rss>
		