ee0u30eb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Static page only showing excerpt….Hi Gus,
Yep got it working. The problem is this part:
is_front_page()
delete that so you will now have:
function my_excerpts($content = false) {
// If is the home page, an archive, or search results
if(is_archive() || is_search()) :
global $post;
$content = $post->post_excerpt;followed by the rest of your function.php code
Let me know how you get on.
Tom
Forum: Fixing WordPress
In reply to: Static page only showing excerpt….AHA, sorry, my fault.
fucntions.php:
function my_excerpts($content = false) {
// If is the home page, an archive, or search results
if(is_front_page() || is_archive() || is_search()) :
global $post;
$content = $post->post_excerpt;I’ve got a feeling that that will do it!
Forum: Fixing WordPress
In reply to: Static page only showing excerpt….Thanks Roy, but I checked that. The template is the same as all the other pages which show fully, just not the front page.
Either there is a setting in some config file that I dont know about which relates to the front page, or there is a bug.
Forum: Themes and Templates
In reply to: I need a theme designer…Excellent, many thanks.
[email protected] for any willing persons!