• This forum has been archived. New threads and replies may not be made. All add-ons/resources that are active should be migrated to the Resource Manager. See this thread for more information.

ragtek New User Notification System (NUNS)

  • Thread starter Thread starter ragtek
  • Start date Start date
Status
Not open for further replies.
AAAAAAAAAAH,

This is your Board Title, or?

I think that this variables are escaped by the phrase object.
Try to include the title direct into the phrase, instead of using my variable for this.
Seems to work ok if you put the title in as text directly. :)

Could this be fixed, probably in some upcoming version? :)
 
Seems to work ok if you put the title in as text directly. :)

Could this be fixed, probably in some upcoming version? :)
If you want you could try to open library/ragtek/nuns/phase.php
search for
PHP:
 return new XenForo_Phrase($this->_prefix.$name, $this->_params);
and replace it with
PHP:
 return new XenForo_Phrase($this->_prefix.$name, $this->_params, false);

(this fix is also included in the next release)
 
Traditional Chinese translation.

option_ragtek_NUNS_xxxxx not translated yet.

Actually, I don't understand when and how this option is used.
This are the phrases for the acp options
 

Attachments

  • nuns.webp
    nuns.webp
    28.2 KB · Views: 1
yes, you can edit all phrases in the acp => options => nuns
there's a own button for this
 
yes. the users informations are stored in $user

i'm not sure but $user.email should work
 
available params in this version:
PHP:
$params = array(
                'user' => $this->_user,
                'boardname' => $options->boardTitle,
                'homeUrl' => $this->_getStartUrl(),
                'username' => $this->_user['username'],
                'profileurl' => XenForo_Link::buildPublicLink('full:members', $this->_user),
                'ip' => (isset($_SERVER['REMOTE_ADDR']) ? $_SERVER['REMOTE_ADDR'] : false),
                'threadId'  =>  $threadId,
                'welcomeThread'  => XenForo_Link::buildPublicLink('full:threads', $thread, array(),true)
 
Hey, nice addon.
Is it possible to close the conversations after the system send it? I will send the conversion via my admin account, but dont want the spam if anyone replies to the conversation. :)

Thanks!
 
Hey, nice addon.
Is it possible to close the conversations after the system send it? I will send the conversion via my admin account, but dont want the spam if anyone replies to the conversation. :)

Thanks!
yes, you can set to automatically close the conversation
 
Bit short on time, sorry if it's answered in the thread..

With this mod, is it possible to have 1 welcome thread to point to, and welcome users by adding a new post to this welcome thread? We don't want to have "what is new" flooded with welcome threads when there's a spike in traffic.
 
Status
Not open for further replies.
Top Bottom