Recent Topics

1 Sep 19, 2009 07:38    

My b2evolution Version: 3.x

Can anyone help how to publish scheduled post?

For example, the date published is set to this coming December. But, the current date is only September. Once I hit publish, the post is already in the publish but it doesn't appear either at the calendar or the page.

Do another one here ever think of this?

TQ

2 Sep 19, 2009 08:09

Type your post -> change the date -> wander over to the right side of the screen and change the setting from "draft" to "published", then click the "save" button ( not "publish now" ), sit back and wait until december

¥

3 Sep 19, 2009 08:16

So, Is there any idea to view the post without waiting until december? Which means, I want the post to be viewed although it is being set of the date given.

4 Sep 19, 2009 08:26

You need to set $timestampmax to a future date in either your index.php or your stub file

// A blog has been requested... Let's set a few default params:

# You could *force* a specific skin here with this setting:
# $skin = 'basic';

# This setting retricts posts to those published, thus hiding drafts.
# You should not have to change this.
$show_statuses = array();

# Here you can set a limit before which posts will be ignored
# You can use a unix timestamp value or 'now' which will hide all posts in the past
$timestamp_min = '';

# Here you can set a limit after which posts will be ignored
# You can use a unix timestamp value or 'now' which will hide all posts in the future
$timestamp_max = 'now';

# Additionnaly, you can set other values (see URL params in the manual)...
# $order = 'ASC'; // This for example would display the blog in chronological order...

// That's it, now let b2evolution do the rest! :)
require $inc_path.'_blog_main.inc.php';

?>

¥


Form is loading...