Hello, in the functions.php file look for slider excerpt length and increase to suit your needs
Hi Ossie
Many thanks for your quick reply.
Sorry but I can only find the following code relating to in functions.php and don’t see this. Should I be looking somewhere else?
/**
* Implement excerpt for homepage slider
*/
function get_slider_excerpt(){
$excerpt = get_the_content();
$excerpt = preg_replace(” (\[.*?\])”,”,$excerpt);
$excerpt = strip_shortcodes($excerpt);
$excerpt = strip_tags($excerpt);
$excerpt = substr($excerpt, 0, 150);
$excerpt = substr($excerpt, 0, strripos($excerpt, ” “));
$excerpt = trim(preg_replace( ‘/\s+/’, ‘ ‘, $excerpt));
return $excerpt;
}
no that’s the correct bit – change the 150 to increase the excerpt length
Hi again
That’s what I thought I tried that but it didn’t do anything. Just me being thick I think as it’s working absolutely fine now though!
Many thanks again your your help much appreciated.
OK good to hear you got it working. Good luck with your website.
Hi,
I have the same problem and i can’t fix it yet . I changed functions.php like this :
function get_slider_excerpt(){
$excerpt = get_the_content();
$excerpt = preg_replace(” (\[.*?\])”,”,$excerpt);
$excerpt = strip_shortcodes($excerpt);
$excerpt = strip_tags($excerpt);
$excerpt = substr($excerpt, 0, 450);
$excerpt = substr($excerpt, 0, strripos($excerpt, ” “));
$excerpt = trim(preg_replace( ‘/\s+/’, ‘ ‘, $excerpt));
return $excerpt;
}
and still cuts the text at the 15teen character .. what else can I do to try and fix it , i want the same length as your demo,
my site in progress:
http://www.dinamitacostarica.com/natalia/
i love your theme , thank you ,
susana