Schedule Content XenForo 1.x only

Schedule Content XenForo 1.x only [Paid] 2.0.9

No permission to buy ($20.00)
nobita, can you send it to me too please. you know my email add. im registered on your site too so dont know what to do to associate my addons with my username.
 
Hi with the EWRporta, i think you miss understand what i was after :)

I would like to have it auto promote the thread when your system sends the thread public on the forums.

Right now our admin have to login when the thread goes live and promote the thread by hand, what for us by passes the point of timing a thread to go live if the admin have to come on still to promote it to a porta article.

Basically we post news that can not be posted before a set day and time so this is why we use your add on to get it all ready for that time and date to save a admin having to be around at that time.
 
Hi with the EWRporta, i think you miss understand what i was after :)

I would like to have it auto promote the thread when your system sends the thread public on the forums.

Right now our admin have to login when the thread goes live and promote the thread by hand, what for us by passes the point of timing a thread to go live if the admin have to come on still to promote it to a porta article.

Basically we post news that can not be posted before a set day and time so this is why we use your add on to get it all ready for that time and date to save a admin having to be around at that time.
Oh Well! You don't give more information before. Look like you want to set the time then thread will be portal?
 
Just noticed that's will be in 1.3 :D
excellent! thank you Nobita Kun :)
Hi with the EWRporta, i think you miss understand what i was after :)

I would like to have it auto promote the thread when your system sends the thread public on the forums.

Right now our admin have to login when the thread goes live and promote the thread by hand, what for us by passes the point of timing a thread to go live if the admin have to come on still to promote it to a porta article.

Basically we post news that can not be posted before a set day and time so this is why we use your add on to get it all ready for that time and date to save a admin having to be around at that time.
this would be a welcome addition as well. if I have be there to promote the thread at a certain time, having the post/thread already set to go doesn't accomplish much.

again, thank you for your work here, Nobita :)
 
excellent! thank you Nobita Kun :)

this would be a welcome addition as well. if I have be there to promote the thread at a certain time, having the post/thread already set to go doesn't accomplish much.

again, thank you for your work here, Nobita :)
Yep! Still try with final testing with other features ^_^ I must be perfomance it again :P
 
Hi,

Just purchased this on your site. Great so far, only problem I seem to be having is that once a thread gets made visible by your schedule it becomes permanently unread.

So even if I open the thread and view it, it remains an unread thread?

EDIT:

I'm also a bit confused as to why the query count at the bottom of the page shows 10 queries, and when I click on it, it shows 14. The extra four are two queries for this add-on, one of them the same thing twice? :S
 
Last edited:
Ok I think I worked out why the extra queries. The moderator bar and navigation templates are not being preloaded, so I made the following change to template.php:

Code:
case 'PAGE_CONTAINER':
$template->preloadTemplate('scheduled_post_navigation_tabs');
$template->preloadTemplate('scheduled_post_moderator_bar');
break;

I then noticed that the query for grabbing the scheduled post count is being run twice so I made the following changes:

I added to the top of template.php just above the template_hook function:

Code:
private static $countScheduleds = null;

Then made the following change to the three instances of code which grab the count:

Code:
        $conditions = array(
           'scheduled_date' => array(">", XenForo_Application::$time)
         );
       
         if(is_null(self::$countScheduleds)) {
           self::$countScheduleds = $scheduledModel->countScheduleds($conditions);
         }
       
         $params += array(
           'viewScheduled' => $scheduledModel->viewScheduledPage(),
           'totalScheduledPosts' => self::$countScheduleds
         );

I can send you the file to see the changes I made if it is easier, makes the add-on more query friendly :)

I have not been able to figure out why the threads are not being marked as read yet though.
 
Back
Top Bottom