Magdalena Halford
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Display excerpts on category pagesOk nevermind, when I load the page with a clear cache it did work! Thank you for your time helping me see what I was overlooking
Forum: Fixing WordPress
In reply to: Display excerpts on category pagesOk I see the_content (in the content.php code I pasted above) but when I replace that with the_excerpt it doesn’t change, the category pages still show all full posts
Forum: Fixing WordPress
In reply to: Display excerpts on category pagesI looked for that to replace it, but in the content.php or category.php code there is no instance of the_content()
The “search” feature works fine, and results are displayed by excerpt, but the “category” results still show full articles
Forum: Fixing WordPress
In reply to: Display excerpts on category pagesStill haven’t figures this one out, would really appreciate some help! Thank you
I am having this problem as well and I have no idea what to change to fix it . . . any suggestions? I read the FAQ but it doesn’t really tell me what to do
Forum: Fixing WordPress
In reply to: Display excerpts on category pagesHere is the content.php code
<?php
/**
* The default template for displaying content
*
* Used for both single and index/archive/search.
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
?><article id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php twentyfourteen_post_thumbnail(); ?><header class=”entry-header”>
<?php if ( in_array( ‘category’, get_object_taxonomies( get_post_type() ) ) && twentyfourteen_categorized_blog() ) : ?>
<div class=”entry-meta”>
<span class=”cat-links”><?php echo get_the_category_list( _x( ‘, ‘, ‘Used between list items, there is a space after the comma.’, ‘twentyfourteen’ ) ); ?></span>
</div>
<?php
endif;if ( is_single() ) :
the_title( ‘<h1 class=”entry-title”>’, ‘</h1>’ );
else :
the_title( ‘<h1 class=”entry-title”>‘, ‘</h1>’ );
endif;
?><div class=”entry-meta”>
<?php
if ( ‘post’ == get_post_type() )
twentyfourteen_posted_on();if ( ! post_password_required() && ( comments_open() || get_comments_number() ) ) :
?>
<span class=”comments-link”><?php comments_popup_link( __( ‘Leave a comment’, ‘twentyfourteen’ ), __( ‘1 Comment’, ‘twentyfourteen’ ), __( ‘% Comments’, ‘twentyfourteen’ ) ); ?></span>
<?php
endif;edit_post_link( __( ‘Edit’, ‘twentyfourteen’ ), ‘<span class=”edit-link”>’, ‘</span>’ );
?>
</div><!– .entry-meta –>
</header><!– .entry-header –><?php if ( is_search() ) : ?>
<div class=”entry-summary”>
<?php the_excerpt(); ?>
</div><!– .entry-summary –>
<?php else : ?>
<div class=”entry-content”>
<?php
/* translators: %s: Name of current post */
the_content( sprintf(
__( ‘Continue reading %s <span class=”meta-nav”>→</span>’, ‘twentyfourteen’ ),
the_title( ‘<span class=”screen-reader-text”>’, ‘</span>’, false )
) );wp_link_pages( array(
‘before’ => ‘<div class=”page-links”><span class=”page-links-title”>’ . __( ‘Pages:’, ‘twentyfourteen’ ) . ‘</span>’,
‘after’ => ‘</div>’,
‘link_before’ => ‘<span>’,
‘link_after’ => ‘</span>’,
) );
?>
</div><!– .entry-content –>
<?php endif; ?><?php the_tags( ‘<footer class=”entry-meta”><span class=”tag-links”>’, ”, ‘</span></footer>’ ); ?>
</article><!– #post-## –>Forum: Fixing WordPress
In reply to: Display excerpts on category pagesI still have not figured out how to fix this. The “search” feature displays excepts, but the category pages display full posts, and I want them to display a list of excerpts. Can anyone help please?
Forum: Fixing WordPress
In reply to: Display excerpts on category pageshttps://www.livemybestlife.com/
thank you for looking!Forum: Fixing WordPress
In reply to: Display excerpts on category pagesIt is set to “summary” yet continues to show full. I can change code if someone tells me what to replace and where . . .
Forum: Plugins
In reply to: [Spam Free WordPress] How do I remove the "Comments are closed." text?Figured it our – just removed the comments field from the singlepost template
Forum: Plugins
In reply to: PS Auto Sitemapthe website says to try disabling other plugins, but that’s no good if I need to have the the other plugins working on the site. Does anyone know how to get this to work, or is there another plugin I could use?
Forum: Plugins
In reply to: PS Auto SitemapIt is supposed to be here: https://www.halfordrealestate.com/111/
Forum: Plugins
In reply to: PS Auto SitemapHi – I also installed this, activated it, made a page, set the page ID, put the code in the html of the content of that page, and still no site map. Can someone help?
Forum: Themes and Templates
In reply to: How to I get rid of the bullet next to the widget title?Thank you – all fixed!
Forum: Themes and Templates
In reply to: How to I get rid of the bullet next to the widget title?I changed that in the css, and now the grey dot is back. Any other ideas? I do appreciate your help ??