delete blog theme info in footer nishita

  • Unknown's avatar

    How do I delete the information about my theme in the footer (when scrolling)? Is this something new?

    And is there a way to get rid of the category listing on each post? I have no categories. I don’t want each post to say “uncategorized.”

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I figured out the footer thing (I had my blog set to infinite scroll). But still need help on removing the category from each post, if possible.

  • Unknown's avatar

    Hi @pearlsandpixels1, you are not allowed to hide the WordPress.com and theme footer credits per our Terms of Service (#11). Even the VIP sites here at WordPress.com (CNN, Time, etc.) are required to keep the footer credits. See the Frequently Asked Questions on the Custom Design support page for more information.

    You are allowed to restyle the footer credits to better fit with your design as long as they remain readable. If you have the Custom Design Upgrade, you can also add text, like a copyright, to the footer credits. If you have the Custom Design upgrade and need help restyling or adding to the existing footer credits, post in the CSS Customization forum and our volunteers and our Staff would be happy to help.

    Hiding the category requires some pseudo selectors. Add this to your CSS and it will hide the category in the post meta data.

    .photo-meta ul li:nth-child(2) {
        display: none;
    }
  • The topic ‘delete blog theme info in footer nishita’ is closed to new replies.