• Hi, now you see on my site on top of the page the date the post have made.
    When I edit a blogpost can the date when I edit the post been shown instead of the date I made the post?

    Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi,

    Go to Appearance -> Customize -> Global settings -> Performances and SEO
    Find the setting -> Use Structured Data Markup for your posts
    Check the check box and save changes.

    It will show updated dated in your “single post” view.

    Thank you

    Thread Starter Triep

    (@triep)

    Hi Denzel,

    Thanks but nothing changes… ??
    I already was checked!

    @triep – posting a link to your site would be helpful.

    Thread Starter Triep

    (@triep)

    Do you have a modified single.php and/or /parts/single-author-date.php file in your child theme?

    Thread Starter Triep

    (@triep)

    Yes I think I changed single.php and deleted the author.
    Single.php looks now like:

    <?php get_template_part(‘inc/page-title’); ?>

    <div class=”pad group”>

    <?php while ( have_posts() ): the_post(); ?>
    <article <?php post_class(); ?>>
    <div class=”post-inner group”>

    <h1 class=”post-title”><?php the_title(); ?></h1>
    <p class=”post-byline”><?php the_time(get_option(‘date_format’)); ?></p>

    <?php if( get_post_format() ) { get_template_part(‘inc/post-formats’); } ?>

    <div class=”clear”></div>

    <div class=”entry”>
    <div class=”entry-inner”>
    <?php the_content(); ?>
    <?php wp_link_pages(array(‘before’=>'<div class=”post-pages”>’.__(‘Pages:’,’hueman’),’after’=>'</div>’)); ?>
    </div>
    <div class=”clear”></div>
    </div><!–/.entry–>

    </div><!–/.post-inner–>
    </article><!–/.post–>
    <?php endwhile; ?>

    <div class=”clear”></div>

    <?php the_tags(‘<p class=”post-tags”><span>’.__(‘Tags:’,’hueman’).'</span> ‘,”,'</p>’); ?>

    <?php if ( ( ot_get_option( ‘author-bio’ ) != ‘off’ ) && get_the_author_meta( ‘description’ ) ): ?>
    <div class=”author-bio”>
    <div class=”bio-avatar”><?php echo get_avatar(get_the_author_meta(‘user_email’),’128′); ?></div>
    <p class=”bio-name”><?php the_author_meta(‘display_name’); ?></p>
    <p class=”bio-desc”><?php the_author_meta(‘description’); ?></p>
    <div class=”clear”></div>
    </div>
    <?php endif; ?>

    <?php if ( ot_get_option( ‘post-nav’ ) == ‘content’) { get_template_part(‘inc/post-nav’); } ?>

    <?php if ( ot_get_option( ‘related-posts’ ) != ‘1’ ) { get_template_part(‘inc/related-posts’); } ?>

    <?php comments_template(‘/comments.php’,true); ?>

    </div><!–/.pad–>

    </section><!–/.content–>

    <?php get_sidebar(); ?>

    <?php get_footer(); ?>

    If I used the original file I see in the post:
    BY ADMIN · PUBLISHED 12 JUNI 2015 · UPDATED 8 AUGUSTUS 2016

    I only want to see the post date or when the post has been updated the Updated date.

    thanks!

    Your single.php appears to be from the old version. There have been several changes in the new version, including moving all the files that were in the /inc directory to the /parts directory. You should make a note of any modifications you’ve made to the files in your child theme, copy the current files from the parent theme to your child theme, then reapply the modifications. THe single post author and date are now in /parts/single-author-date.php.

    Here’s a post that covers most of the changes up through v3.1.1:
    https://www.ads-software.com/support/topic/pre-update-questions-from-225-to-311

    The current version is 3.1.6. You can check the change logs here:
    https://github.com/presscustomizr/hueman/releases

    And the release notes here:
    https://presscustomizr.com/category/hueman-releases/

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Update date instead of posting date’ is closed to new replies.