• Resolved gafm24

    (@gafm24)


    hey again =)

    is it possible to change the grid on the hentry page so that all post summaries show on one page? (https://green.pc-web.eu/category/produkte/)
    as I won’t use this homepage as blog, there won’t be any more posts to be added

    and I’d like the site’s title to show only the category’s name, but not the word “category/Kategorie” itself?

    any ideas?

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi there,

    is it possible to change the grid on the hentry page so that all post summaries show on one page?

    The text should show on your categories:

    https://gazettedemo.wordpress.com/category/food/

    There is some CSS being added to the site which hides the text:

    
    .entry-summary {
        display: none;
    }
    

    Double check to make sure you don’t have a plugin set to hide these.

    Alternatively, you can add this CSS to the site via Appearance > Customize > Additional CSS:

    .entry-summary {
        display: block;
    }

    and I’d like the site’s title to show only the category’s name, but not the word “category/Kategorie” itself?

    You can add this CSS for that:

    
    .category-produkte .page-title {
        display: none;
    }
    .category-produkte .page-header:after {
        content: 'Produkte';
        font-family: Lato, sans-serif;
        font-weight: 900;
        font-size: 39px;
        line-height: 1.54;
        display: block;
    }
    Thread Starter gafm24

    (@gafm24)

    thank you so much =)
    it did the trick for the category title
    but I’m still working on my hentry page, I have 13 posts and I want all post summaries to be shown on the same page, right now, I have to go to another page to see the last three ones, do you know how to change this?

    Hi again,

    Try adjusting the “Blog pages show at most” value in your Settings > Reading area:

    https://codex.www.ads-software.com/Settings_Reading_Screen

    The default value there is 10.

    Thread Starter gafm24

    (@gafm24)

    sometimes it’s easier than you think, you just have to search at the right place ^^

    thank you so much

    Thread Starter gafm24

    (@gafm24)

    once again about the category issue:

    this is only for this specific category, but if I add another category, I’ll have the same problem again, right?

    .category-produkte .page-header:after {
    content: ‘Produkte’;
    font-family: Lato, sans-serif;
    font-weight: 900;
    font-size: 39px;
    line-height: 1.54;
    display: block;
    }

    is it possible to define that on every category’s page the page title/page header shows the category’s name? e.g. for category x the page title would be “x”, for category y “y” and so on

    it’s kind of difficult to explain, I hope it makes some sense, if not I’ll try again
    here’s the link: https://green.pc-web.eu/category/produkte/

    Hi there,

    Yes, you would need to add CSS for every new category.

    Let’s say you created a category called My New Category.

    The URL for it would be:

    https://green.pc-web.eu/category/my-new-category

    So for the CSS, you’ll just use .category-my-new-category instead of .category-produkte. You can make the same kinds of changes to any new categories that way.

    Let me know if this helps.

    Thread Starter gafm24

    (@gafm24)

    okay thanks, yes it works =)

    so there’s no trick for the lazi ones to define the title of every category x ? you have to change it manually?

    It looks like this plugin may work for you. I haven’t tried it, but you can get support in the plugin’s forum if you decide to use it.

    Thread Starter gafm24

    (@gafm24)

    you’re the best, for now it works perfectly =D

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘title and grid on hentry page’ is closed to new replies.