- How to get the latest version of Kirby?
- How to fix website load speed?
- How to incorporate a Meta Pixel?
- How to incorporate Metadata to images?
-
How to get the latest version of Kirby?
What version is your kirby site?
Update to Kirby 4 | Kirby CMS -
How to fix website load speed?
You can actived cache.
Caching | Kirby CMS
You can crop image to a right size and use webp
thumbs | Kirby CMS
$file->thumb() | Kirby CMS
if($image = $page->image()):
echo $image->thumb([
'width' => 300,
'height' => 200,
'quality' => 80,
'format' => 'webp',
])->html();
endif;
- How to incorporate a Meta Pixel?
Redirecting...
How to install a Facebook Pixel (now Meta Pixel): Everything you need to know
Maybe you will need something for cookies.
- How to incorporate Metadata to images?
Do you mean OG data?
Creating OG images | Kirby CMS
You can expand blueprint and add your fields.
Best regards