Hi,
I am exploring the feasibility of migrating a site from Kirby 2 to Kirby 3 that I developed a few years ago. I premise, I am a hobbyist and not a programmer, and have always found kirby easy to use. I downloaded the latest version and brutally copied the old site with the new kirby. Little by little, following the debug instructions and reading cookbooks and docs I managed to make it somewhat visible Now, however, I need more work to make the content visible. The biggest difficulty for me right now is figuring out which instructions are deprecated. Let me give you an example:
<?php
$issue = page($page->path());
$editorial = page($page->path() . "/editorial");
$projects = page($page->path() . "/projects");
?>
the instruction
$page->path()
is deprecated and doesn’t work. But I don’t know where/what to look for to figure out the equivalent. I have searched the forum and unfortunately I have to ask
Any help is really much appreciated.
Thanks.