• Hi,

    (WordPress newbie here – I am using the FlyDoctor Version 1.0.11 theme by andronic90, WordPress v 5.3.2)

    I am trying to get rid of:

    1) ” written by admin 02/02/2020 ” (at the top)
    2) “Categories”, “Previous Story”, “Next Story (at the bottom)

    Could you please point me in the right direction ?

    (I am unfamiliar with WordPress Themes files structure but can edit whichever files need to be edited, I just don’t know which ones.)

    Thank you for your time and your help.

    Regards,

    Kami

    • This topic was modified 4 years, 9 months ago by kamibarut. Reason: detail specification

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,
    you need to use the additional CSS in the customize section of your theme. To do that, you need to “catch” some CSS know how (no need to become a full stack dev though, just the basics).

    Here is the source code of the part you want to remove (or hide, two possibilities):

    <div class=”post-meta font2″>
    <span class=”post-author” itemprop=”author”>written by admin</span>
    02/02/2020
    </div>
    </div>

    There you have the class post-author, and the class post-date unless it’s needed to consider the whole “post-date last” as a class of itself.

    From there, you will get somthing such as:

    .post-author .post-date last {
    visibility: hidden;
    }

    to be inserted in the additional CSS in the customize section of your theme.

    If it does not work, then you might need a bit more, or maybe less,

    .post-author .post-date {
    visibility: hidden;
    }

    Or:
    .post-meta font2 .post-author .post-date {
    visibility: hidden;
    }

    You try. (As you guess I am no web dev, but I do manage my way arount it).

    You see the “.” : it’s for classes. If you’d had a unique identifier you would use a “#” instead.

    Next, have a look here: https://www.w3schools.com/cssre/pr_class_visibility.asp

    If you finally feel it’s not your thing, you can find web devs who can offer you their services.

Viewing 1 replies (of 1 total)
  • The topic ‘Trying to get rid of standard text’ is closed to new replies.