Hi there, can you help with CSS to remove all the post meta except the publish date http://prntscr.com/qtz2ja?
We’re using x-theme > Integrity stack.
Hi there, can you help with CSS to remove all the post meta except the publish date http://prntscr.com/qtz2ja?
We’re using x-theme > Integrity stack.
Hi William,
Please add this code in X > Theme Options > CSS:
.p-meta span {
display: none;
}
.p-meta span:nth-child(2) {
display: block;
}
.p-meta span:nth-child(2):after {
display: none;
}
Hope this helps.
Hi Jade, thank you for the quick reply! That didn’t work-- what we want to do is hide all the other post meta except the date.
Hi William,
I tried to check the sites that are registered in your licenses but I can’t find the site that reflect the screenshot you have posted.
Would you mind providing us with the site URL so that we can check it?
Thank you.
Hi William,
This code should work:
.p-meta span {
display: none;
}
.p-meta span:nth-child(2) {
display: block;
}
.p-meta span:nth-child(2) i,
.p-meta span:nth-child(2):after {
display: none;
}
If the codes do not work in your setup, please copy all the codes that are in the Global CSS and paste it here.
It should provide some information if there are any CSS error that is causing the issue that you have to fix so that the CSS codes will work.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.