Remove link from blog page

I am working on a site where the blog is just short news items, so the text shown on the main blog page is all that is needed.

Is there a way to remove the link and just have the title as a title?

So on the main blog, just have the page listing them, with no link on the image or title.

Hi there,

Please add this code in the Global CSS:

.blog a.entry-thumb, .blog .entry-title a {
    pointer-events:  none;
}

.blog a.more-link {
    display: none;
}

You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.

Hope this helps.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.