Viewing 4 replies - 1 through 4 (of 4 total)
  • Viewing the testimonial directly, instead of the shortcode, uses your theme’s single.php template. You can modify that template to remove the author field. Be aware that will also affect blog posts.

    Copying single.php to a child theme will prevent theme updates from overwriting your changes.

    Another option is to create a testimonial-specific template by copying single.php to single-wpm-testimonial.php and modifying that new file.

    Thread Starter normynorms

    (@normynorms)

    Hi Chris this is what i am seeing:

    Where do you change?

    <?php
    /**
    * The Template for displaying all single posts.
    *
    * @package ThinkUpThemes
    */

    get_header(); ?>

    <?php while ( have_posts() ) : the_post(); ?>

    <?php get_template_part( ‘content’, ‘single’ ); ?>

    <?php thinkup_input_nav( ‘nav-below’ ); ?>

    <?php edit_post_link( __( ‘Edit’, ‘lan-thinkupthemes’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>

    <?php thinkup_input_allowcomments(); ?>

    <?php endwhile; ?>

    <?php get_footer(); ?>

    Look in another file content-single.php for <?php the_author(); ?>.

    Any news?

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘hide authors name’ is closed to new replies.