Shelley
Well-known member
I'm still waiting for my Angry Birds design!![]()
Yeah sorry about that, that is still at the design stage in photoshop. I did have a design applied but it really didn't turn out well at all. It's def on my todo

I'm still waiting for my Angry Birds design!![]()
Which templates do I have to edit to do that?Unfortunately, TinyMCE doesn't play nice with multiple domains - such as your CDN subdomain.
You can either turn the Rich Text editor off, or edit the templates so that the files for the Tiny MCE editor are served from your local server instead of over the CDN.
As for stuff showing to all members, that isn't possible unless the criteria has been set incorrectly.
What if instead of "User is a Guest" you change the usergroup to "Unregistered/Unconfirmed"?
Here are the two php files for the addon causing errors with this if it helps.-snip-
<?php
//Our class helper (we can put any helpers in here we want)
class CanModerateForum_Helpers
{
public static function helperCanModerate (array $forum, array $viewingUser = null, &$errorPhraseKey = '', array $nodePermissions = null)
{
if($viewingUser['user_id'] > 0)
{
$user = Xenforo_Visitor::setup($viewingUser['user_id']);
}
Xenforo_Visitor::setup(0);
return ($viewingUser['user_id'] && Xenforo_Permission::hasContentPermission($user->getNodePermissions($forum['node_id']), 'manageAnyThread'));
}
}
?>
<?php
//Our class name
class CanModerateForum_Listener
{
/**
* Listen to the "init_dependencies" code event.
*
* @param XenForo_Dependencies_Abstract $dependencies
* @param array $data
*/
public static function init(XenForo_Dependencies_Abstract $dependencies, array $data)
{
//Get the static variable $helperCallbacks and add a new item in the array.
XenForo_Template_Helper_Core::$helperCallbacks += array(
'canmoderate' => array('CanModerateForum_Helpers', 'helperCanModerate')
);
}
}
?>
I don't really use the notice system, but just trying it out gives me the same problem as long as that addon is on.Do you use the built in Notices system? What happens if you set that to the "user is a guest" criteria. Is it the same problem?
*I know a sent you a PM but I prefer if you answer it here so others who have the same problem if it ever comes up, know how to fix itYep, that confirms it is nothing I can fix, unfortunately.
If the problem is affecting both Notices and Notifications then unfortunately someone will need to do some debugging of that add-on to find out what is causing that issue.
Yep, that confirms it is nothing I can fix, unfortunately.
If the problem is affecting both Notices and Notifications then unfortunately someone will need to do some debugging of that add-on to find out what is causing that issue.
Sorry for missing your earlier post. The Dark Wizard kept me busy
I experimented with this once, and it didn't go too well.
I will revisit it again soon. I tried a quick hack to get it to work but it wasn't too successful! I will investigate it in more detail which will probably involve extending the view controller.
No problem! it does not seem to be an addon since I also replicated this problem on a fresh board.Sorry for missing your earlier post. The Dark Wizard kept me busy
I experimented with this once, and it didn't go too well.
I will revisit it again soon. I tried a quick hack to get it to work but it wasn't too successful! I will investigate it in more detail which will probably involve extending the view controller.
That would need a lot of regulating and maintenance.I was thinking about Gritter notices and the Tag Me addon.
@Chris Deeming would trigger a Tag Me Alert.
Maybe
@@Chris Deeming could trigger a Gritter alert ?
It's not a request, I'm just saying.
If it was overused it would be useless.That would need a lot of regulating and maintenance.
If XF notices do it too then it's an XF bug. Unless there's another add on interfering.
The problem seems to have just gone away. . .No problem! it does not seem to be an addon since I also replicated this problem on a fresh board.
I'll report it in the bug forum since it's not there.
We use essential cookies to make this site work, and optional cookies to enhance your experience.