Deleting "Category"

  • Unknown's avatar

    Hi, I do not want the word “Category” in the pages but I cannot delete it. https://forexgezegeni.com/category/eur/ in the page it says “Category: EUR”, but I want it to be only “EUR”. Could not see any option to delete the word “Category”

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

  • Unknown's avatar

    Hi there,

    There isn’t a built in setting to hide the “Category” from the title of that page but you could make some customisation with CSS.

    In case you’re not familiar with CSS: It’s a coding language that’s used across the web to change the appearance of websites. Here at WordPress.com, it’s possible to add custom CSS to change certain parts of a theme’s design. You can read more about using custom CSS here at WordPress.com in the following guide:

    https://en.support.wordpress.com/custom-design/#custom-css

    You can add CSS via the CSS panel of the WordPress.com Customizer.

    To hide the page title from all category pages on your site, the following could be used:

    .category .page-header {
        display: none;
    }

    To hide the page title from the specific page you linked to in your support request and replace it with “EUR,” you could use the following:

    .category-eur .page-title {
        visibility: hidden;
    }
    
    .category-eur .page-title:before {
        content: "EUR";
        visibility: visible;
    }

    Let me know if either of the above snippet help out or if you have any further questions.

  • The topic ‘Deleting "Category"’ is closed to new replies.