JoeMayo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Change Tag Pages To Show Full Post (Not Excerpt)Dreamweaver was giving me a syntax error on line 33 (from the code you provided above).
33. <?php endif; ?>
Once I removed that line from the above code it works great.
Make any sense to you? I know nothing about php.
It is working so I will go with that unless there are any other suggestions you have.
Thanks so much.
Joe
Forum: Themes and Templates
In reply to: Change Tag Pages To Show Full Post (Not Excerpt)I removed:
<?php if ( is_archive() || is_search() ) : // Display excerpts for archives and search. ?>
But I get a syntax error
Here is what I see around the condition you specified:
<?php elseif ( ( function_exists( 'get_post_format' ) && 'aside' == get_post_format( $post->ID ) ) || in_category( _x( 'asides', 'asides category slug', 'twentyten' ) ) ) : ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <strong><?php if ( is_archive() || is_search() )</strong> : // Display excerpts for archives and search. ?> <div class="entry-summary"> <?php the_excerpt(); ?></div><!-- .entry-summary --> <?php else : ?> <div class="entry-content"> <?php the_content( __( 'Continue reading <span class="meta-nav">?</span>', 'twentyten' ) ); ?> </div><!-- .entry-content --> <?php endif; ?>
[Please post code snippets between backticks or use the code button.]
Should I be removing more than what i did?
Forum: Themes and Templates
In reply to: Change Tag Pages To Show Full Post (Not Excerpt)I should have mentioned I am already using a child theme.
Forum: Plugins
In reply to: [Sociable] How do you change the color of the Sociable Tag Line?Hi,
Thanks for your response.
I changed the #333333 in the sociable/includes/sociable_output.php file.
It worked.
Is this okay.
Better to add your code in the CSS? Does it matter?