Quote from: stylix on February 11, 2026, 01:21:43 AMTurning off a custom block fixed it, I'll try to see what's causing the issue in it. Thank you!
Quote from: lurkalot on February 10, 2026, 03:38:53 PMI suspect you have another block with some broken code in it causing the issue. Try temporarily turning off the left panel (in Panels) Then the right panel and see if the center and front panels work.Turning off a custom block fixed it, I'll try to see what's causing the issue in it. Thank you!
Or you could turn off your custom blocks one at a time and see if you have one causing the issue.


// --- SETTINGS ---
$target_day = 1; // 0=Sunday, 1=Monday, 2=Tuesday... 6=Saturday
$start_time = "19:00";
$end_time = "23:00";
// --- CURRENT DATE/TIME ---
$now = new DateTime("now", new DateTimeZone("Europe/London"));
$current_day = (int)$now->format("w");
$current_time = $now->format("H:i");
// --- CHECK ---
if ($current_day === $target_day && $current_time >= $start_time && $current_time < $end_time) {
echo '<img src="https://your-image-url-here.jpg" alt="Scheduled Image">';
}
[center][color=red][size=3][b]Itchdog is currently live on the air!![/b][/size][/color][/center]
[center][url="http://www.southbayradio.org/"]Click here to tune in![/url][/center]
[center][url="http://www.southbayradio.org/"][img]https://evolvedones.net/gallery/1_02_02_26_8_09_39.png[/img][/url][/center]<html>If the time date is outside (time/date) then ignore the rest of this block</html>Page created in 0.031 seconds with 17 queries.