<?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>
									How do I change the links for icons or remove icons completely? - How-to and Troubleshooting - wpForo 2.0				            </title>
            <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/</link>
            <description>Discussion Board</description>
            <language>en-US</language>
            <lastBuildDate>Tue, 11 Aug 2026 15:18:34 +0000</lastBuildDate>
            <generator>wpForo</generator>
            <ttl>60</ttl>
							                    <item>
                        <title>RE: How do I change the links for icons or remove icons completely?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-129046</link>
                        <pubDate>Fri, 19 Dec 2025 13:00:17 +0000</pubDate>
                        <description><![CDATA[@sofy Thank you so much!You helped me a lot!I got it!]]></description>
                        <content:encoded><![CDATA[@sofy Thank you so much!<br />You helped me a lot!<br />I got it!]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Artyr</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-129046</guid>
                    </item>
				                    <item>
                        <title>RE: How do I change the links for icons or remove icons completely?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-129031</link>
                        <pubDate>Thu, 18 Dec 2025 07:12:28 +0000</pubDate>
                        <description><![CDATA[@artyr 
Please use this hook code: 
add_filter( &#039;wpforo_init_member_templates&#039;, function($member_templates){
    $member_templates = array_map( function($template){
       $template[&#039;add...]]></description>
                        <content:encoded><![CDATA[<p>@artyr </p>
<p>Please use this hook code: </p>
<pre contenteditable="false">add_filter( 'wpforo_init_member_templates', function($member_templates){
    $member_templates = array_map( function($template){
       $template = 0;
       $template = 0;
       
       return $template;
    }, $member_templates);
    
    return $member_templates;
}, 999 );</pre>]]></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/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-129031</guid>
                    </item>
				                    <item>
                        <title>RE: How do I change the links for icons or remove icons completely?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-128994</link>
                        <pubDate>Sat, 13 Dec 2025 11:53:15 +0000</pubDate>
                        <description><![CDATA[These icons are visible in the screenshoUsing your code, the links didn&#039;t disappear. They just became unclickable.]]></description>
                        <content:encoded><![CDATA[<p>These icons are visible in the screenshot<br /><a href="https://iimg.su/i/vvz2aD" target="_blank" rel="nofollow noopener">https://iimg.su/i/vvz2aD</a><br /><br /><br />site:<br />https://avifm.ru/forum/blog-akcii-avito/avito-dostavka-1-rubl-akcziya-usloviya/ <br /><br />Using your code, the links didn't disappear. They just became unclickable.</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Artyr</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-128994</guid>
                    </item>
				                    <item>
                        <title>Re: How do I change the links for icons or remove icons completely?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-128971</link>
                        <pubDate>Thu, 11 Dec 2025 10:20:03 +0000</pubDate>
                        <description><![CDATA[@artyr,
In wpForo, the icons (such as forum icons or profile icons) are often linked by default, which can sometimes lead to broken links or unwanted indexing by search engines. To change o...]]></description>
                        <content:encoded><![CDATA[@artyr,
In wpForo, the icons (such as forum icons or profile icons) are often linked by default, which can sometimes lead to broken links or unwanted indexing by search engines. To change or remove these links, you would typically need to customize the forum template files or use CSS/JavaScript to disable the links.

One approach is to override the template files where these icons are rendered and remove the anchor tags wrapping the icons. Another simpler way is to use CSS to disable pointer events on the icon links, effectively making them unclickable, for example:

<pre>
#wpforo a .wpf-icon-class { /* replace with actual icon link class */
  pointer-events: none;
  cursor: default;
}
</pre>

Additionally, to prevent search engines from indexing these links, you can add a <b>rel="nofollow"</b> attribute to the anchor tags in the template files or via filters if available.

Since wpForo does not provide a direct setting for this, you may need to customize your theme or child theme files or use hooks if you want a programmatic solution.

If you want specific guidance on which template files to edit or how to apply CSS for your particular icons, please specify which icons you want to modify (e.g., forum icons, profile icons, post icons).

For more detailed customization, you might consider consulting wpForo support or their community forums.]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>wpForo Support</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-128971</guid>
                    </item>
				                    <item>
                        <title>How do I change the links for icons or remove icons completely?</title>
                        <link>https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-128953</link>
                        <pubDate>Tue, 09 Dec 2025 08:45:33 +0000</pubDate>
                        <description><![CDATA[HelloCan you please help?How do I change the links for these iconsOr maybe they can be removed somehow in the settings? (If I set &quot;display:none;&quot; to the icons, the links are still indexed by...]]></description>
                        <content:encoded><![CDATA[<p>Hello<br />Can you please help?<br /><br />How do I change the links for these icons?<br /><br /><a href="https://iimg.su/i/vvz2aD" target="_blank" rel="noopener">https://iimg.su/i/vvz2aD</a> <br /><br />Or maybe they can be removed somehow in the settings? (If I set "display:none;" to the icons, the links are still indexed by search engines - this is not suitable.)<br /><br />I have a profile on the <strong>BodyPress</strong> forum, so these links are broken:<br />https://avifm.ru/klient/avifm/community/<br />https://avifm.ru/user/avifm/favored/<br />https://avifm.ru/klient/avifm/community/subscriptions/<br /><br />Here's the page with the icons<br />https://avifm.ru/forum/blog-akcii-avito/avito-dostavka-1-rubl-akcziya-usloviya/</p>]]></content:encoded>
						                            <category domain="https://wpforo.com/community/how-to-and-troubleshooting-2/">How-to and Troubleshooting - wpForo 2.0</category>                        <dc:creator>Artyr</dc:creator>
                        <guid isPermaLink="true">https://wpforo.com/community/how-to-and-troubleshooting-2/how-do-i-change-the-links-for-icons-or-remove-icons-completely/#post-128953</guid>
                    </item>
							        </channel>
        </rss>
		