Shape 5

Wordpress Club Themes => Game Crusade - Club => : mariela132 April 10, 2012, 08:24:18 PM



: Game crusade summary function
: mariela132 April 10, 2012, 08:24:18 PM
In my dashboard under settings > reading I have the option to control they layout of my content (see attachment) one of the options are "For each article in a feed, show , full text or summary". Eve  after selecting summary I continue to get the entire article.

See gameon.iotechie.com


: Re: Game crusade summary function
: Tristan Rineer April 13, 2012, 10:33:26 AM
You should be able to fix that issue by editing "game/loop.php" and changing line #123 from
:
<?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?> 
to
:
<?php if ( is_archive() || is_search() ) || is_home() : // Only display excerpts for archives, search, and blog. ?> 



: Re: Game crusade summary function
: mariela132 April 13, 2012, 11:46:15 AM
Thank you , also I can't tag my post, I can enter keywords but when I select the button to tag it does nothing.


: Re: Game crusade summary function
: mariela132 April 13, 2012, 11:52:15 AM
Parse error: syntax error, unexpected T_BOOLEAN_OR in /home/iotechie/public_html/GameOn/wp-content/themes/s5_game_crusade/game/loop.php on line 123


: Re: Game crusade summary function
: Tristan Rineer April 13, 2012, 03:34:31 PM
Oops, sorry about that; I had a ")" in the wrong place.

Use this:
:
<?php if ( is_archive() || is_search() || is_home() ) : // Only display excerpts for archives, search, and blog. ?> 


: Re: Game crusade summary function
: mariela132 April 13, 2012, 04:25:53 PM
Great!!! IT WORKS YOUR GENIUS LOL , one last thing .. I cant tag


: Re: Game crusade summary function
: Tristan Rineer April 17, 2012, 11:23:57 AM
Some of the older themes have a minor javascript conflict with the WP3+ admin.  I will have to take a look at the code and see what I can do to release an update with a fix. 

Until it's ready, you may find a plugin like Auto-tags (http://wordpress.org/extend/plugins/auto-tag/) to be useful.