Hi Owen,
This issue can be reproduced; following message appears in the debug mode:
[31-Aug-2015 03:03:48 UTC] PHP Fatal error: Call to undefined function ct_get_images() in /wordpress/wp-content/themes/OwenAbroad2015/functions.php on line 79
… and this is definitely our bad. During fixing of this issue Conflict with “Anti-spam by CleanTalk” #13 (https://github.com/Labs64/credit-tracker/issues/13) function "ct_get_images"
has been renamed into "credittracker_get_images"
; thus this function can’t be found in your code.
We had to provide clear communication via changelog for the release v1.1.2 (lessons learned – sorry for this).
How to fix:
I’d ask you to change function name at functions.php on line 79
from:
$images = ct_get_images($request);
to:
$images = credittracker_get_images($request);
In order to cover your use-case we’ll prioritize following change request accordingly: Add credit to the thumbnail so you wouldn’t need to implement this additionally in your theme.
Could please test suggested change and close this ticket?
Sorry again for this inconvenience and Best Wishes from Munich
Labs64 Team