SOUTH Theme removal of CATEGORY displays

Latest Reply from Alice at 2015-05-29 10:20:35
SOUTH Theme removal of CATEGORY displays...

How can I remove the CATEGORY displays being shown on every post...
For example, remove this ( May 18, 2015 Posted in EVENT, | No comments)

HERE >> http://jbrncorp.com/worcesterlatinfestival/


FYI: already tried removing this line:
<h1 class="page-title"><?php printf( $SMTheme->_( 'catarchive' ), single_cat_title( '', false ) ); ?></h1>

From category.php... it did not work



2) This link >> http://jbrncorp.com/worcesterlatinfestival/
WILL NOT display the SLIDER on initial load, the link needs to be ReLoaded and then the slider appears..

Thank you for your help
Hi!

1) To remove meta data about your post ( Posted In uncategorized No comments Edit ) you have to delete the code in theloop.php located in the directory of the theme :
//Post meta (comments, date, categories)
if (!is_page()) {?><p class='post-meta'>

Posted in &nbsp;<?php the_category(', ');

if(comments_open( get_the_ID() )) {
?> on <span class='post-date'><?php echo get_the_date(); ?></span> <span class='post-comments'><?php comments_popup_link( $SMTheme->_( 'noresponses' ), $SMTheme->_( 'oneresponse' ), $SMTheme->_( 'multiresponse' ) ); ?></span>
<?php }
edit_post_link( $SMTheme->_( 'edit' ), ' | <span class="edit-link">', '</span>' );
?>
</p><?php } ?>


As for the slider, I can't detect the problem. It is loaded from the first time on my computer.
CONFUSED... below is the complete content of theloop.php
This does not match what you responded with ??????



<?php
if ( have_posts() ) :
// Start the Loop.
while ( have_posts() ) : the_post();
/*
* Include the post format-specific template for the content. If you want to
* use this in a child theme, then include a file called called content-___.php
* (where ___ is the post format) and that will be used instead.
*/
if (is_page())
get_template_part( 'content', 'page' );
else
get_template_part( 'content', get_post_format() );
endwhile;
// Previous/next post navigation.
get_template_part('navigation');
else :
// If no content, include the "No posts found" template.
get_template_part( 'content', 'none' );
endif;

?>
Which version of the theme is installed on your website?
South Version: 2.4
downloaded less than 2 weeks ago
Yes, you are right, that is my fault. You need to edit the code:
<!-- ========== Post Meta ========== -->
<div class="entry-meta">
<span class='post-date'><?php echo get_the_date(); ?></span>,

<?php the_category(', ');

if(comments_open( get_the_ID() )) {
?> <span class='post-comments'><?php comments_popup_link( $SMTheme->_( 'noresponses' ), $SMTheme->_( 'oneresponse' ), $SMTheme->_( 'multiresponse' ) ); ?></span>
<?php }
edit_post_link( $SMTheme->_( 'edit' ), ' | <span class="edit-link">', '</span>' );
?>
</div>
in the content.php file of your theme.

Leave a reply

Add codeAdd image