I was able to find a convoluted work around, but it would be very nice if you provided the option to show the excerpt for a blog post if one exists. This seems like a pretty standard wordpress feature that you have taken away in your theme.
The work around is to change a php file, which isn't too bad if you could use the child theme. But the child theme doesn't read subfolders, so you have to change a parent theme file to get it to do that. It just doesn't make any sense.
There are many things I like about this theme, but that just seems really weird to me....
There are hooks for the blog functions, so you can copy the blog functions in your child theme functions file and it will overwrite the main theme functions.
Ah okay. We did not try copying the whole file into functions.php. We just tried to replicate the file structure and make a new copy in the child theme. Thanks so much!
Hi there - this does not seem to be working. I copied the entire rd_blog.php contents and pasted into my child theme functions.php. Then I changed the line from
echo tt_text_truncate(tt_content(), "300");
to
echo the_excerpt();
And I am still getting a truncated version of the post instead of the excerpt.
I was able to find a convoluted work around, but it would be very nice if you provided the option to show the excerpt for a blog post if one exists. This seems like a pretty standard wordpress feature that you have taken away in your theme.
The work around is to change a php file, which isn't too bad if you could use the child theme. But the child theme doesn't read subfolders, so you have to change a parent theme file to get it to do that. It just doesn't make any sense.
There are many things I like about this theme, but that just seems really weird to me....
Hello Ellison,
There are hooks for the blog functions, so you can copy the blog functions in your child theme functions file and it will overwrite the main theme functions.
Which blog module are you using?
Also what navigation type?
Regards
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
I'm using the Blog Grid and "classic" navigation.
Hello Ellison,
Then you can copy the content of the rd_blog.php file in your child theme functions.php ( thefox/functions/rd_shortcodes/rd_blog.php )
and change the line 836
tt_text_truncate(tt_content(), "300");
to
the_excerpt();
Do not hesitate to contact us if you have more questions.
Have a nice day!
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
Ah okay. We did not try copying the whole file into functions.php. We just tried to replicate the file structure and make a new copy in the child theme. Thanks so much!
Hello Ellison,
You're welcome!
Do not hesitate to contact us if you have more questions.
Have a nice day!
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
Hi there - this does not seem to be working. I copied the entire rd_blog.php contents and pasted into my child theme functions.php. Then I changed the line from
echo tt_text_truncate(tt_content(), "300");
to
echo the_excerpt();
And I am still getting a truncated version of the post instead of the excerpt.
Any thoughts?
Also, FYI, it's not even working when I change it in the parent theme in the rd_blog.php file itself.
Hello Ellison,
Try get_the_excerpt(); instead
Do not hesitate to contact us if you have more questions.
Have a nice day!
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
Nope, that didn't work. Assuming I should keep the word "echo" in front of that?