regarding 1):
I found some settings here:
- include\language\en_us.lang.php (and other language files) and
- portal\include\language\en_us.lang.php
There are definitions for 'tselect_type_dom'. You could try to add additional rows here. The first column seems to be the number of seconds for the duration (which is for 4 hours not fully correct ...):
PHP Code:
'tselect_type_dom' =>
array (
'0' => '0 hours',
'14440' => '4 hours',
'28800' => '8 hours',
'43200' => '12 hours',
'86400' => '1 day',
'172800' => '2 days',
'259200' => '3 days',
'345600' => '4 days',
'432000' => '5 days',
'604800' => '1 week',
'1209600' => '2 weeks',
'1814400' => '3 weeks',
'2592000' => '30 days',
'5184000' => '60 days',
'7776000' => '90 days',
'10368000' => '120 days',
'12960000' => '150 days',
'15552000' => '180 days',
),
Bookmarks