Viewing 6 replies - 1 through 6 (of 6 total)
  • Sai

    (@gold-digger)

    Hi, you can remove line <?php pilotfish_entry_meta(); ?>
    from files with name like “content-xx.php”

    Thread Starter totti_777

    (@totti_777)

    I try it but don’t work well, the web don’t change.

    Theme Author Daniel Zhao

    (@danni1990)

    you need to remove the <?php pilotfish_entry_meta(); ?>
    from the file “page.php” as well, to remove them from all pages.

    Thread Starter totti_777

    (@totti_777)

    Thank you, now i would like to delete page Page Hierarchy, how I can?

    Why not just hide the post info with css instead of removing the code

    .post-meta {
       display: none;
    }

    Theme Author Daniel Zhao

    (@danni1990)

    Re: ronangelo: yeah, that’s a good idea 🙂

    To totti_777:

    to delete page hierarchy, you can either delete the following from page.php

    <!-- Display children if page has children -->
    		<div class="page-hierarchy">
                    <?php
    		//if the post has a parent
    		if($post->post_parent){
    		  //collect ancestor pages
    		  $relations = get_post_ancestors($post->ID);
    		  //get child pages
    		  $result = $wpdb->get_results( "SELECT ID FROM wp_posts WHERE post_parent = $post->ID AND post_type='page'" );
    		  if ($result){
    		    foreach($result as $pageID){
    		      array_push($relations, $pageID->ID);
    		    }
    		  }
    		  //add current post to pages
    		  array_push($relations, $post->ID);
    		  //get comma delimited list of children and parents and self
    		  $relations_string = implode(",",$relations);
    		  //use include to list only the collected pages.
    		  $sidelinks = wp_list_pages("title_li=&echo=0&include=".$relations_string);
    		}else{
    		  // display only main level and children
    		  $sidelinks = wp_list_pages("title_li=&echo=0&depth=1&child_of=".$post->ID);
    		}
    
    		if ($sidelinks) { ?>
    		  <h5><?php _e('Page Hierarchy:', 'pilotfish'); ?> <?php the_title(); ?></h5>
    		  <ul>
    		    <?php //links in <li> tags
    		    echo $sidelinks; ?>
    		  </ul>
    		<?php } ?>
    		</div>

    OR add to the style.css

    .page-hierarchy {
      display: none;
    }

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Delete author and posted by on comments’ is closed to new replies.