<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="/styles/v2/template/feed/rss_web_en.xsl?v=2.0.2.13" type="text/xsl"?>
<!-- Some spaces                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        to force xlst -->
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/" xml:lang="en">
<channel>
	<title><![CDATA[CaniDev]]></title>
	<description><![CDATA[]]></description>
	<link>/feed/?lang=en</link>
	<language>en</language>
	<ttl>10</ttl>
	<lastBuildDate>Mon, 16 Mar 2026 02:45:29 +0000</lastBuildDate>
	<copyright><![CDATA[2011-2026 CaniDev]]></copyright>
	<image>
		<title><![CDATA[CaniDev]]></title>
		<url>/static/canidev-image-small.jpg</url>
		<link>/feed/?lang=en</link>
	</image>
	<atom:link rel="self" href="/feed/forum?lang=en" type="application/rss+xml"/>

	<item>
		<title><![CDATA[Re: Cover image disappears]]></title>
		<dc:creator>JollyRoger</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1544&amp;p=7339&amp;lang=en#p7339</link>
		<pubDate>Mon, 16 Mar 2026 02:45:29 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[Happening to me as well, going to try that .htaccess fix from earlier in the thread.]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Remove @ Symbol from Profile Info?]]></title>
		<dc:creator>JollyRoger</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1663&amp;p=7338&amp;lang=en#p7338</link>
		<pubDate>Fri, 06 Mar 2026 07:30:16 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[For anyone else curious I was able to find it on my own after a lot of searching, it's in the file &quot;follower.php&quot; on line 610 under the canidev -&gt; follower path. Just delete the @ in quotations and it should be good.]]></description>
	</item>
	<item>
		<title><![CDATA[Remove @ Symbol from Profile Info?]]></title>
		<dc:creator>JollyRoger</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1663&amp;p=7337&amp;lang=en#p7337</link>
		<pubDate>Thu, 05 Mar 2026 14:05:26 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[Hey, when using the extension an @ symbol pops up next to your username on the about field. I find this a bit aesthetically unpleasing since it's not used anywhere else (excluding mentions, which I have disabled), and I'd like to remove it. I've searched the code fairly extensively but can't find any obvious way, could anyone point me in the right direction? I assume it's a super simple thing and that my inexperience is showing here but it'd be greatly appreciated.]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Add an event to: right_side_body.html]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1625&amp;p=7260&amp;lang=en#p7260</link>
		<pubDate>Mon, 22 Sep 2025 17:43:18 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[Thanks for suggestions,<br />I'll keep that in mind for future versions.]]></description>
	</item>
	<item>
		<title><![CDATA[Add an event to: right_side_body.html]]></title>
		<dc:creator>bennybernaer</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1625&amp;p=7259&amp;lang=en#p7259</link>
		<pubDate>Mon, 22 Sep 2025 15:36:31 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[To allow extensions to be hooked, it would be useful to add an event to right_side_body.html<br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>          {% EVENT wall_user_details_after_custom_fields %}</code></dd></dl><br /><br /><dl class="codebox"><dt>Code: </dt><dd><code>      &lt;ul class=&quot;wall-user-details&quot;&gt;<br />         &lt;li class=&quot;fw-pullcenter&quot;&gt;<br />            {{ RANK_TITLE }}<br />            {% if RANK_TITLE and RANK_IMG %}&lt;br /&gt;{% endif %}<br />            {{ RANK_IMG }}<br />         &lt;/li&gt;<br />         {% if S_USER_INACTIVE %}&lt;li class=&quot;fw-pullcenter&quot;&gt;{{ USER_INACTIVE_REASON }}&lt;/li&gt;{% endif %}<br />         {% if AGE !== '' %}&lt;li&gt;&lt;i class=&quot;fa fa-gift&quot;&gt;&lt;/i&gt; {{ AGE }} {{ lang('YEARS_OLD') }}&lt;/li&gt;{% endif %}<br />         <br />      {% for field in custom_fields %}<br />         &lt;li&gt;<br />         {% if field.S_PROFILE_PHPBB_LOCATION %}<br />            &lt;i class=&quot;fa fa-map-marker&quot;&gt;&lt;/i&gt;<br />         {% elseif field.S_PROFILE_PHPBB_WEBSITE %}<br />            &lt;i class=&quot;fa fa-globe&quot;&gt;&lt;/i&gt;<br />         {% elseif field.S_PROFILE_PHPBB_FACEBOOK %}<br />            &lt;i class=&quot;fa fa-facebook&quot;&gt;&lt;/i&gt;<br />         {% elseif field.S_PROFILE_PHPBB_TWITTER %}<br />            &lt;i class=&quot;fa fa-twitter&quot;&gt;&lt;/i&gt;<br />         {% elseif field.S_PROFILE_PHPBB_YOUTUBE %}<br />            &lt;i class=&quot;fa fa-youtube&quot;&gt;&lt;/i&gt;<br />         {% elseif field.S_PROFILE_PHPBB_GOOGLEPLUS %}<br />            &lt;i class=&quot;fa fa-googleplus&quot;&gt;&lt;/i&gt;<br />         {% elseif field.S_PROFILE_PHPBB_SKYPE %}<br />            &lt;i class=&quot;fa fa-skype&quot;&gt;&lt;/i&gt;<br />         {% else %}<br />            &lt;strong&gt;{{ field.PROFILE_FIELD_NAME }}{{ lang('COLON') }}&lt;/strong&gt;&lt;/span&gt;<br />         {% endif %}<br />         <br />         {% if field.PROFILE_FIELD_CONTACT %}<br />            &lt;a href=&quot;{{ field.PROFILE_FIELD_CONTACT }}&quot;&gt;{{ field.PROFILE_FIELD_DESC }}&lt;/a&gt;<br />         {% else %}<br />            &lt;span&gt;{{ field.PROFILE_FIELD_VALUE }}&lt;/span&gt;<br />         {% endif %}<br />         &lt;/li&gt;<br />      {% endfor %}<br />          {% EVENT wall_user_details_after_custom_fields %}<br />      &lt;/ul&gt;</code></dd></dl>]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Cover image disappears]]></title>
		<dc:creator>bennybernaer</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1544&amp;p=7256&amp;lang=en#p7256</link>
		<pubDate>Sat, 13 Sep 2025 19:08:04 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[Same problem here.]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Cover image disappears]]></title>
		<dc:creator>corleone</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1544&amp;p=7219&amp;lang=en#p7219</link>
		<pubDate>Thu, 24 Jul 2025 03:03:27 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[So it appears on my site, the images delete the first time you upload them, when you upload images a 2nd time, they stay. <br /><br />Any ideas why this would be?]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Cover image disappears]]></title>
		<dc:creator>corleone</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1544&amp;p=7218&amp;lang=en#p7218</link>
		<pubDate>Fri, 18 Jul 2025 09:11:11 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[Post I just got from a member<br /><br /><blockquote class="uncited"><div><br />What is the wall? Had some pics posted there but were gone a day later....<br /></div></blockquote>]]></description>
	</item>
	<item>
		<title><![CDATA[Re: hidden users error]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1583&amp;p=7214&amp;lang=en#p7214</link>
		<pubDate>Wed, 18 Jun 2025 20:55:57 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[Sorry for delay<br />This bug will be fixed in the next version.]]></description>
	</item>
	<item>
		<title><![CDATA[Re: JPEG not allowed for profile image?]]></title>
		<dc:creator>IvanPF</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1584&amp;p=7213&amp;lang=en#p7213</link>
		<pubDate>Wed, 18 Jun 2025 20:54:18 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[Sorry for the delay<br />I will add jpeg in the next version]]></description>
	</item>
	<item>
		<title><![CDATA[Re: JPEG not allowed for profile image?]]></title>
		<dc:creator>corleone</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1584&amp;p=7207&amp;lang=en#p7207</link>
		<pubDate>Fri, 30 May 2025 11:20:44 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[Apparently not much support offered in this forum?  The solution is to add jpeg (and also bmp) to the core media file.]]></description>
	</item>
	<item>
		<title><![CDATA[Re: hidden users error]]></title>
		<dc:creator>kushcat</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1583&amp;p=7205&amp;lang=en#p7205</link>
		<pubDate>Wed, 28 May 2025 04:45:12 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[is it possible to fix?]]></description>
	</item>
	<item>
		<title><![CDATA[Re: Cover image disappears]]></title>
		<dc:creator>corleone</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1544&amp;p=7203&amp;lang=en#p7203</link>
		<pubDate>Tue, 27 May 2025 02:15:28 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[this is happening to me also.  Was working for about 3 or 4 days and then disappeared.  Using 3.3.15, prosilver.]]></description>
	</item>
	<item>
		<title><![CDATA[JPEG not allowed for profile image?]]></title>
		<dc:creator>corleone</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1584&amp;p=7202&amp;lang=en#p7202</link>
		<pubDate>Fri, 23 May 2025 08:37:52 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[This is the format that iPhone uses and I think should be allowed to be used. Any way to allow it?]]></description>
	</item>
	<item>
		<title><![CDATA[Re: hidden users error]]></title>
		<dc:creator>kushcat</dc:creator>
		<link>https://www.canidev.com/viewtopic.php?t=1583&amp;p=7201&amp;lang=en#p7201</link>
		<pubDate>Thu, 22 May 2025 05:07:50 +0000</pubDate>
		<category>cBB Follower</category>
		<description><![CDATA[it also does it for hidden users in the cbb chat]]></description>
	</item>

</channel>
</rss>
