Xen Notices [Deleted]

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"?
Which templates do I have to edit to do that?

Also I found out that the criteria works correctly on other styles/default. I use an edited version of class(Heck even default class is not giving me this problem) so i don't know what to do, it shows the box to everyone even with "Unregistered/Unconfirmed".

Edit: if I give you access think you can work around?

Edit2: I found the problem, we have an inhouse addon that we made called "Can moderate current forum" That allows us to check in templates if someone is the mod of a forum for styling purposes. It's how we give our storytellers things style wise since xF does not have a default way of checking for that. When I disable it, this addon returns to normal.

Edit3: If it helps any, our custom addon creates a helper that we use in templates, (Styles that are not using said helper, seem to function fine with this addon)

I'm sorry for being such a bother :(
 
Here are the two php files for the addon causing errors with this if it helps.

Helpers.php

Code:
<?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'));
    }
}
?>
Listener.php
Code:
<?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')
        );
    }
}
?>
 

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?
 
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.
 
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.
*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 it :)!

Jake Bunce helped me fix it :)!

So no addons are clashing any more.

However, may you explain how to serve the files over the local server? http://xenforo.com/community/threads/notifications-powered-by-gritter-paid.33906/page-31#post-421366

I'm sorry for constantly bothering you ;(.
 
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.

Oh I found something else, if you only use Gravatar, the setting "user has no avatar" will cause the popup to keep appearing until you upload an avatar. Though this seems to be an issue with xF because notices do it as well. Not sure yet. Your thoughts?
 
If XF notices do it too then it's an XF bug. Unless there's another add on interfering.
 
Sorry for missing your earlier post. The Dark Wizard kept me busy :p

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.
 
Sorry for missing your earlier post. The Dark Wizard kept me busy :p

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.

Cheers Chris, just noticed I'm up the road from you in Notts :)
 
(y) I know Notts quite well. I lived there for about 18 months. Just off Mansfield Road in Daybrook :)
 
Sorry for missing your earlier post. The Dark Wizard kept me busy :p

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.

I'll report it in the bug forum since it's not there.
 
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.
 
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.
That would need a lot of regulating and maintenance.
 
That would need a lot of regulating and maintenance.
If it was overused it would be useless.
I was thinking admins or paid members only.
Maybe even just admins.
I think the idea has lots of flaws. I'm just throwing it out there as I thought of it.
 
It has a good bit of flaws, as well as a good bit of risk. Honestly, I think it's a bit overkill, seeing as how the @user tagging system DOES trigger a xenforo alert already.
 
If XF notices do it too then it's an XF bug. Unless there's another add on interfering.
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.
The problem seems to have just gone away. . .

xF has a bit of history of not exactly agreeing with Gravatar, I remember that one period here on the forums when people's gravatars wouldn't update etc. Mike has stated before that it's something to do on their end.

So theres that :D!

Thanks for everything Chris Deeming, sorry for constantly bothering you, I assume I drove you up the wall.

/hug
 
Back
Top Bottom