-
AuthorPosts
-
October 5, 2018 at 1:59 pm #1018280
As per the title, if I update a post it adds the creation date beneath it.
On some portfolio items, all I have to do is edit the text and save the posts and it goes again.
I have one particular post that it just won’t go. It’s a constant problem I’ve had with this site.Can you please help?
October 6, 2018 at 6:27 am #1018413Hey jonrouse,
Thanks for the link, though I can’t see a date under that post. How can we reproduce the problem?
Best regards,
RikardOctober 8, 2018 at 10:21 am #1018894Hi Rikard,
That’s strange. There are a few more links below where I am seeing the issue.
I have used a bit of quick CSS on some pages, but they just keep popping up randomly. It feels like the CSS is okay for a quick fix, but it’s not really sustainable over time..page-id-XXXX .post-entry-XXXX .slide-meta { display: none !important; }
Thanks in advance
October 8, 2018 at 4:07 pm #1019030Hi,
I can see it on the first link you posted last now, you want to remove this site wide right? If so then try this CSS instead:
.slide-meta time { display:none !important; }
Best regards,
RikardOctober 8, 2018 at 4:17 pm #1019033Hi Rikard,
This is where things get tricky! We have news stories on the website where they would like to retain the date. It’s portfolio items (where the staff are) where I’d like to hide all dates. I see that the code you kindly provided removes the dates from the blogs.
Is there any prefix to the code, like
.portfolio-item
which might work?October 9, 2018 at 5:59 am #1019335Hi,
I thought a class like that would be present as well but it doesn’t look like it unfortunately. It looks like both of those pages are children of your business page though? If so then you can try this:
.parent-pageid-3289 .slide-meta time { display:none !important; }
Best regards,
RikardOctober 9, 2018 at 10:23 am #1019416Hi Rikard,
That’s a perfect solution! The pages that have that element are either children of business or individuals, so I should be able to replace all the post ID CSS with those two parent page ID CSS bits.Thanks so much for your help. This is why I use Enfold!
October 9, 2018 at 1:27 pm #1019488Hi,
Yes, the CSS I posted should target all children of the business page. If that is enough then please try removing all the page-id CSS you have.
Thanks for the kind words :-)
Best regards,
RikardOctober 9, 2018 at 1:51 pm #1019498It was too good to be true!
The issue is that ten of the children have their own children, so I guess I’d have to repeat that code ten different times to cover those pages?
October 9, 2018 at 5:04 pm #1019549Hi jonrouse,
You can put the css selectors for all pages separated by comma, but the code just once, like so
.parent-pageid-3289 .slide-meta time, .parent-pageid-3287 .slide-meta time { display:none !important; }
If you need further assistance please let us know.
Best regards,
Victoria -
AuthorPosts
- You must be logged in to reply to this topic.