collapse

* Simple Portal Archived Forum

This is an Archive Forum.

The content in this forum may be out-of-date or have been superseded by newer information, and links in forum pages to other sites may not work.
This forum contains archives for future reference.

Visit our thread at Simple Machines Forum for current support.

SMF 2.1 users: EhPortal is a ported version of Simple Portal specifically designed for the SMF 2.1 branch.
Please visit web-develop.ca to download EhPortal and for its support.

* User Info

 
 
Welcome, Guest. Please login or register.

* Who's Online

  • Dot Guests: 434
  • Dot Hidden: 0
  • Dot Users: 0

There aren't any users online.

* Shoutbox

Refresh History
  • Shoutbox is not for support!
  • {OCS}MasterSeal: Yup, Still adore SP
    April 21, 2019, 07:08:06 PM
  • {OCS}MasterSeal: STILL love SP :)
    November 24, 2018, 05:05:50 AM
  • ♦ Ninja ZX-10RR ♦: <3 aegersz
    September 13, 2018, 03:36:09 PM
  • aegersz: I STILL <3 LOVE SimplePortal
    September 13, 2018, 07:11:39 AM
  • aegersz: o LOVE you guys - Simple Portal rocks !
    May 09, 2018, 05:18:59 AM
  • Chen Zhen: our apologies for the site being down.. please read server issues topic
    March 22, 2018, 05:32:38 AM
  • {OCS}MasterSeal: LOL PLEASE forget I just posted that. I found the answer in my own dang post back in 2015. lol sorry!
    July 04, 2017, 10:47:55 PM
  • {OCS}MasterSeal: I know this SB isnt' for support, but I just have a general question. Who would I contact to find out where SP stores its block info? Is it DB driven or files? I searched the site but came up with nothing. probably my fault any insight is appreciated.
    July 04, 2017, 10:43:36 PM
  • ♦ Ninja ZX-10RR ♦: Excuse me but what does Simpleportal have to deal with that?
    February 05, 2017, 08:21:14 PM
  • WhiteEagle: of course IMHO that site appears to be dead :(
    February 04, 2017, 01:08:05 PM
  • WhiteEagle: If I can get that, then I'll use it for that site...
    February 04, 2017, 01:07:35 PM
  • WhiteEagle: decided to not use SMF for any projects, unless I can get a copy of the premium version of the fanfiction archive plugin
    February 04, 2017, 01:06:54 PM
  • expertdecisions: cloudflare
    January 28, 2017, 08:01:47 AM
  • aegersz: SM release 2.0.13 !
    January 12, 2017, 06:00:13 AM
  • raffo: Tks Emanuele, even if I didn't understand the fix :D
    November 07, 2016, 02:01:20 AM
  • emanuele: [link]
    November 01, 2016, 12:43:50 PM
  • emanuele: raffo: the English support board is a good place. ;)
    November 01, 2016, 12:43:38 PM
  • raffo: Where can I find the fix for the shoutbox?
    November 01, 2016, 05:06:09 AM
  • {OCS}MasterSeal: To the SP team, I make a point to come here and thank you as much as possible for your work.  so again, THANK YOU!
    October 28, 2016, 10:38:05 AM
  • emanuele: That's indeed funny, the limit is present only in the patch and not the full install.
    October 22, 2016, 06:14:58 PM

* Recent Posts

Adding Forums Button to Nav bar by jirapon
[August 01, 2019, 09:07:12 AM]


Re: Board Icons by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 04:03:41 PM]


MOVED: Czech translation???? by ♦ Ninja ZX-10RR ♦
[July 30, 2019, 03:04:51 PM]


Board Icons by jirapon
[July 30, 2019, 07:28:44 AM]


Re: Thankyou Simpleportal, by ♦ Ninja ZX-10RR ♦
[July 29, 2019, 09:41:29 AM]

If you're interested in helping other members with support requests, consider joining the Community Support Helpers group.

Author Topic: [Tip] Post Notifications on shoutbox  (Read 24882 times)

0 Members and 1 Guest are viewing this topic.

Offline 130860

  • Super Handsome Language Coordinator
  • Comrade
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #20 on: January 28, 2011, 04:36:23 PM »
ok, can you tell me the ID of the shout you're modifying?  this tip supose to modify the shout with ID 1, but you need to change that to your actual shout ID

Offline Divecall

  • Full Member
  • ***
  • Posts: 201
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: [Tip] Post Notifications on shoutbox
« Reply #21 on: January 28, 2011, 04:49:31 PM »
I have only one shoutbox...this is with ID 1

Offline 130860

  • Super Handsome Language Coordinator
  • Comrade
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #22 on: January 28, 2011, 07:18:35 PM »
ok, try with this one:

Code: [Select]
$foros = array (42,54);
     
     
      if (in_array($board, $foros))
echo '';
 
  else
      {
global $user_info, $board, $scripturl, $boardName, $topic;
     
         $smcFunc['db_insert']('',
      '{db_prefix}sp_shouts',
      array(
         'id_shoutbox' => 'int',
         'id_member' => 'int',
         'member_name' => 'string',
         'log_time' => 'int',
         'body' => 'string',
      ),
      array(
         1,
         $user_info['id'],
         $user_info['name'],
         time(),
         '[color=red][b]Neues Thema: [url=http://'.$scripturl . '?topic=' . $topic . '.new#new'.']'.html_entity_decode($_POST['subject']).'[/url][/b][/color]',
      ),
      array('id_shout')
   );

Offline Divecall

  • Full Member
  • ***
  • Posts: 201
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: [Tip] Post Notifications on shoutbox
« Reply #23 on: January 28, 2011, 07:48:29 PM »
Wow! Thats amazing!

It is working. THANK YOU SO MUCH!

Offline robbie93

  • Semi Newbie
  • *
  • Posts: 18
  • Gender: Male
    • R & H
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #24 on: February 20, 2011, 02:14:10 PM »
Thank you sooooo much for this tip - I am using this code

Code: [Select]
global $user_info, $board, $scripturl, $boardName, $topic;
     
         $smcFunc['db_insert']('',
      '{db_prefix}sp_shouts',
      array(
         'id_shoutbox' => 'int',
         'id_member' => 'int',
         'member_name' => 'string',
         'log_time' => 'int',
         'body' => 'string',
      ),
      array(
         1,
         $user_info['id'],
         $user_info['name'],
         time(),
         '[color=red][b]New Topic: [url='.$scripturl . '?topic=' . $topic . '.new#new'.']'.html_entity_decode($_POST['subject']).'[/url][/b][/color]',
      ),
      array('id_shout')
   );


It is working fine but when I upload a new game and the topic is created it doesnt show up in the sbox

the board for the arcade games is here http://robbie93andhotchildxox.net/index.php/board,4.0.html

how can I get each new topic to show up in the sbox when one is created? thanks.

Offline 130860

  • Super Handsome Language Coordinator
  • Comrade
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #25 on: February 20, 2011, 10:56:19 PM »
does your shoutbox has the ID 1?

Offline robbie93

  • Semi Newbie
  • *
  • Posts: 18
  • Gender: Male
    • R & H
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #26 on: February 21, 2011, 03:26:38 PM »
No my sbox has the ID 5 I changed the array to 5 on the code, most topics work but new topics created when a game is installed do not.

Offline 130860

  • Super Handsome Language Coordinator
  • Comrade
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #27 on: February 22, 2011, 10:12:37 AM »
this code will only work for new topics created by members,  if you have a mod that automatically creates a new topic, then this code won't show that topic.

Offline robbie93

  • Semi Newbie
  • *
  • Posts: 18
  • Gender: Male
    • R & H
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #28 on: February 22, 2011, 01:15:49 PM »
Ahh, ok no probs - thanks for a great tip anyway.

Offline phantomm

  • Translator
  • *
  • Posts: 406
  • Gender: Male
  • Smile, tomorrow will be worse...
    • Polish ElkArte community
  • SMF Version: None
  • Elkarte Version: 1.0.5
Re: [Tip] Post Notifications on shoutbox
« Reply #29 on: July 04, 2012, 04:54:45 PM »
few questions:

  • If I want show as author of this shouts user with ID 80 - what I have to change?
  • If I want to change text in shout to:
      New topic [linked topic name] posted by [linked username]
    How to do this? Is it possible?
« Last Edit: July 04, 2012, 04:57:15 PM by phantomm »

Offline velorooms

  • Jr. Member
  • **
  • Posts: 83
    • Velorooms
  • SMF Version: 2.0.2
  • SP Version: 2.3.5
Re: [Tip] Post Notifications on shoutbox
« Reply #30 on: October 19, 2012, 01:59:56 PM »
dito the above. i want it to put the topic name rather than just "new topic"
Admin and Owner of Velorooms.com - Using SMF 2.0.3 and Simpleportal 2.3.5

weerforum

  • Guest
Re: [Tip] Post Notifications on shoutbox
« Reply #31 on: October 31, 2012, 02:21:38 PM »
Is there a way to show answers, too - not only the new topic?
I would love that  :D

weerforum

  • Guest
Re: [Tip] Post Notifications on shoutbox
« Reply #32 on: November 06, 2012, 03:43:09 PM »
No help ???    :| :| :|

weerforum

  • Guest
Re: [Tip] Post Notifications on shoutbox
« Reply #33 on: November 27, 2012, 07:51:49 AM »
 :'( :'( :'(

Offline 130860

  • Super Handsome Language Coordinator
  • Comrade
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #34 on: November 29, 2012, 04:12:42 PM »
Doing it for messages will put a heavy load on your server, it is not recommended.

You can add the same piece of code right after this comment on the same file:

Code: [Select]
// Only send it to everyone if the topic is approved, otherwise just to the topic starter if they want it.

weerforum

  • Guest
Re: [Tip] Post Notifications on shoutbox
« Reply #35 on: November 29, 2012, 04:16:11 PM »
Sorry i am dutch where to put that code ?

Offline 130860

  • Super Handsome Language Coordinator
  • Comrade
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #36 on: November 29, 2012, 04:21:47 PM »
Open the Sources/Post.php  and find that exact line, put the code on the first message of this topic right after that comment line.

Or just attach the file here.

weerforum

  • Guest
Re: [Tip] Post Notifications on shoutbox
« Reply #37 on: November 29, 2012, 04:25:05 PM »
Thnx for the help here is mi attachment

Offline 130860

  • Super Handsome Language Coordinator
  • Comrade
  • *
  • Posts: 1769
  • Gender: Male
  • You and I are not the same class of pirate!
  • SMF Version: 2 RC3
  • SP Version: 2.3.2
Re: [Tip] Post Notifications on shoutbox
« Reply #38 on: November 29, 2012, 04:27:36 PM »
use this one, make a back up of your site before tryig to use this file as its totally untested.

weerforum

  • Guest
Re: [Tip] Post Notifications on shoutbox
« Reply #39 on: November 29, 2012, 04:32:26 PM »
Didn`t work sorry ?
Not showing new post in te shoutbox