I want to remove dates from page posts (not article posts) because it's irrelevant for the use I'm making of this theme.
Where could I do this ?
What is the code to edit ?
Please be clear, I'm not a programmer.
Thank you in advance.
<time class="entry-date<?php if(get_post_format() != '') : ?> gk-format-<?php echo get_post_format(); ?><?php endif; ?>" datetime="<?php echo esc_attr(get_the_date('c')); ?>">
<a href="<?php echo esc_url(get_permalink()); ?>" title="<?php echo esc_attr(get_the_time()); ?>" rel="bookmark">
<?php echo esc_html(get_the_date('d')); ?>
<span><?php echo esc_html(get_the_date('M')); ?></span>
</a>
</time>
<?php if(is_single()) : ?>
<?php endif; ?>
<?php
/**
*
* The template fragment to show post header
*
**/
// disable direct access to the file
defined('GAVERN_WP') or die('Access denied');
global $tpl;
?>
<?php if((!is_page_template('template.fullwidth.php') && ('post' == get_post_type() || 'page' == get_post_type())) && get_the_title() != '') : ?>
<time class="entry-date<?php if(get_post_format() != '') : ?> gk-format-<?php echo get_post_format(); ?><?php endif; ?>" datetime="<?php echo esc_attr(get_the_date('c')); ?>">
<a href="<?php echo esc_url(get_permalink()); ?>" title="<?php echo esc_attr(get_the_time()); ?>" rel="bookmark">
<?php echo esc_html(get_the_date('d')); ?>
<span><?php echo esc_html(get_the_date('M')); ?></span>
</a>
</time>
<?php endif; ?>
<?php if(get_the_title() != '') : ?>
<hgroup>
<h<?php echo (is_single()) ? '1' : '2'; ?>>
<?php if(!is_singular()) : ?>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', GKTPLNAME ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark">
<?php endif; ?>
<?php the_title(); ?>
<?php if(!is_singular()) : ?>
</a>
<?php endif; ?>
<?php if(is_sticky()) : ?>
<sup>
<?php _e( 'Featured', GKTPLNAME ); ?>
</sup>
<?php endif; ?>
</h<?php echo (is_single()) ? '1' : '2'; ?>>
</hgroup>
<?php endif; ?>
<?php if((!is_page_template('template.fullwidth.php') && ('post' == get_post_type() || 'page' == get_post_type())) && get_the_title() != '') : ?>
<?php gk_post_meta(); ?>
<?php endif; ?>
<?php do_action('gavernwp_before_post_content'); ?>