Paula
Forum Replies Created
-
O gosh that was a ‘duh’ moment for me….
Thanks for the insight 🙂
Thank you Otto, you were right. My bad, I could’ve thought of that myself. In my case it was the YOURLS plugin that was the bad guy, don’t really need it so removed it, as suggested and now everything’s working again.
Just to let you know: I love SFC and STC. Keep up the good work!
I have exactly the same problem.
Is there a sollution for this yet?
Okay, so I fixed it myself.
I defined this function in future-slideshow.php:
function cut_content_fat($text, $chars, $points = "...") { $length = strlen($text); if($length <= $chars) { return $text; } else { return substr($text, 0, $chars)." ".$points; } }Then, in feature_slideshow_body.php I found this:
<span>' . $metadata['feature_slideshow_description'][0] . '</span>and replaced it with:
<span>' . cut_content_fat($excerpt, 80, "...") . '</span>I defined $excerpt:
$excerpt = get_the_excerpt();
(I put this just a little above $return = in the future-slideshow.php file)Hope this helps people.
I have the same error.
I use the plugin on 4 sites and all four give this error.
Maybe this page can help you:
http://www.qianqin.de/qtranslate/forum/viewtopic.php?f=3&t=294
sorry, I’m to new to PHP to understand what they’re saying there…