GavinR121
Forum Replies Created
-
Hi @iberezansky many thanks for your quick reply, very much appreciated.
I’ve updated the plugin to 1.16.9 now and all is fixed and working perfectly again!
Thanks again and best wishes. ??
Forum: Themes and Templates
In reply to: [Formation] Blog templates problemHi Ossie/waveman777
I’m having the same problem with my blog also. I’m using the Blog Grid layout for my blog page and would just like it to display my chosen blog excerpt instead of the entire post. I’d like for the Home Page recent posts section to also just display the excerpt also.
I’ve tried editing the content.php file as waveman777 suggested and also tried using a more tag in my posts but neither of these seem to work for me.
You can see my site in development at: https://www.redwing-hosting.com/ianallan/
Ossie I’m also happy to purchase the Pro version of the theme as you have helped me on another problem earlier. Is it possible to upgrade the theme rather than reinstalling the pro version?
Many thanks
Forum: Themes and Templates
In reply to: [Formation] Slider Text LengthHi 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.
Forum: Themes and Templates
In reply to: [Formation] Slider Text LengthHi 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;
}