Hat da schon mal jemand so etwas gemacht. Wäre schön, wenn mir jemand so etwas im Ansatz zur Verfügung stellen könnte.
Von JavaScript habe ich nicht allzu viel Ahnung

Code: Select all
<phpwcms:intervall period="yearly" date-begin="01-01" date-end="02-01" time-begin="00:00" time-end="00:00">
Whatever
</phpwcms:intervall>
Er sagen mir, man muss probieren und vielleicht Abfrage experiemt machen.Du musst experimentieren, dies ist nur ein Grundgerüst. Ein wenig Lesen in einem Buch "JavaScript programmieren"Code: Select all
<!-- JS: var now = new Date(); var month = now.getMonth() + 1; var date = now.getDate(); //-> Winteraktion: 15.10 bis Ende Februar eines Jahres: if (month == "10" && date >="15") (location.href='Winteraktion.html'); if (month >= "11") (location.href='Winteraktion.html'); if (month <= "2" ) (location.href='Winteraktion.html'); //-> Sommeraktion: 01.03. bis 14.10 eines Jahres: if (month > "2" && month <="9") (location.href='Sommeraktion.html'); if (month == "10" && date <="14") (location.href='Sommeraktion.html'); -->
...
Code: Select all
<?php
if ($content["cat_id"] === 123) {
$current_month = intval(date('n')); // Month 1-12
$current_day = intval(date('j')); // Day 1-31
// Winter
if (($current_month > 10 || $current_month < 3 || ($current_month === 10 && $current_day >= 15)) && $aktion[1] !== 2) {
headerRedirect(abs_url( array(), array(), 'winter', 'urlencode'));
// Summer
} elseif ($aktion[1] !== 3) {
headerRedirect(abs_url( array(), array(), 'sommer', 'urlencode'));
}
}