I have a custom posts type and I am listing it via the content element “Blog Posts”
This works great. Now I want to display only the content… so no title and no post meta… and only for this custom post type… I want the regular blog to remain as it is.
Any help appreciated. New to Enfold.
Hi draig!
Thank you for using our theme.
Can you give us a link to this page please? Then we can check and give you the correct CSS or look for another solution.
You can post it here as a private reply.
Cheers!
Günter
Hi Günter,
I have a localhost site I am experimenting on so it is not available on the internet. It is for an organizations website that I have volunteered to update and I don’t want to figure it out on their live site. Actually I only purchased Enfold theme so I could do this, but I like it enough that I may switch some other sites to it as well.
I used Types plugin to create the CPT (Links) and then display a blog list using the Enfold Content Element “Blog Posts”
The CPT is for links to external articles about the organization. I only want to have an archive and not make the individual posts visible to readers. So actually, it is fine if the title is there, but then I don’t want it to be a link to the single post.
If you really need to see what I am doing, I can use one of my own existing sites, but I would rather not install Enfold there and mess up how it looks just to show you. This seems simple enough that a solution should be pretty generic.
Thanks for your help!
Cheers,
Deva
Hi!
You can add this in the Quick CSS field to disable the post title link:
.cptname .post-title {
pointer-events: none;
}
Change the cptname to the name of the custom post type.
Best regards,
Ismael
Thank you very much for your help!