Reply To: testimonials rotator testimonials page called archives

Home Forums Support testimonials rotator testimonials page called archives Reply To: testimonials rotator testimonials page called archives

Home Forums Support testimonials rotator testimonials page called archives Reply To: testimonials rotator testimonials page called archives

#214556
Tom
Lead Developer
Lead Developer

It looks like that page might be created by the plugin itself.

You would have to:

1. Hide the archives title:

.post-type-archive-testimonial .page-header {
    display: none;
}

2. Add your new title using GP Hooks in the “Inside Content Container” hook:

<?php if ( is_post_type_archive( 'testimonial' ) ) : ?>
    <h1 class="entry-title">Testimonials</h1>
<?php endif; ?>

Make sure to check the “Execute PHP” checkbox.