Hey all,
I’m having bit of a struggle with page models. I have home.php
in the models directory with the code:
<?php
class HomePage extends Page {
public function thumbnail() {
// crop image and return
return $this->crop(640, 480);
}
}
In the template home.php
I have:
<?php echo $slider_image->thumbnail()->url(); ?>
With slider image using the selector field. All works fine until I use the thumbnail
function. If i put:
<?php echo $slider_image->crop(640, 480)->url(); ?>
It works without issues.
Appreciate any help I can get.