Updated to version 1.0.2
New feature!
Timezone. Set default timezone for the countdown.
js by Tom Ellis updated
Update instructions
Open: styles/prosilver/theme/colours.css
Find:
Add after:
Open: styles/prosilver/template/overall_header.html
Find:
Add after:
Code: Select all
<!-- IF COUNTDOWN_OFFSET_ENABLE -->
offset: {COUNTDOWN_OFFSET},
<!-- ENDIF -->
Open: includes/functions.php
Find:
Code: Select all
'COUNTDOWN_MONTH' => $config['countdown_month'],
Add after:
Code: Select all
'COUNTDOWN_OFFSET_ENABLE' => $config['countdown_offset_enable'],
'COUNTDOWN_OFFSET' => $config['countdown_offset'],
Open: includes/acp/acp_board.php
Find:
Code: Select all
'countdown_date' => array('lang' => 'COUNTDOWN_DATE', 'validate' => 'string', 'type' => 'text:40:255', 'explain' => true),
Add after:
Code: Select all
'countdown_offset_enable' => array('lang' => 'COUNTDOWN_OFFSET_ENABLE', 'validate' => 'bool', 'type' => 'radio:yes_no', 'explain' => false),
'countdown_offset' => array('lang' => 'COUNTDOWN_OFFSET', 'validate' => 'int', 'type' => 'text:3:4', 'explain' => true),
Save files, upload all files and run the installer.