• Resolved Sebbis

    (@sebbis)


    Hi.
    I’m trying to remove posted by, posted in and bookmark the permalink text from my posts.
    Basically i want my posts to be as clean as possible, title and text is all that is needed.
    I tried to look in single.php but couldnt find it.
    Any tips would be great.

    http://wordpress.org/extend/themes/kippis/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author birchware

    (@birchware)

    What you have to do is to find those texts in the .php files and delete them there.

    As for now, there is no setting is the theme that does that.

    in single.php, see:

    get_template_part('content','single' );

    this points you to: content-single.php
    where you find the code from line 21 to 61; starting with:

    <footer class="entry-meta">

    delete as much or as little as you need.

    for the index pages, there is this section in content.php:

    <div class="entry-meta">
                      <?php kippis_posted_on(); ?>
                    </div><!-- .entry-meta -->

    which you could either delete totally,
    or you can locate that function in functions.php of your theme from line 358, starting with:

    function kippis_posted_on()

    you can edit it there and remove what you want.

    Thread Starter Sebbis

    (@sebbis)

    Thanks. With your explanation i was able to search my way through the files and remove what i needed to.

    Theme Author birchware

    (@birchware)

    Just remember to note what you did, so you can repeat the process come next update.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Theme: Kippis] Removing posted by and posted in’ is closed to new replies.