Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #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?

    #1018413

    Hey jonrouse,

    Thanks for the link, though I can’t see a date under that post. How can we reproduce the problem?

    Best regards,
    Rikard

    #1018894

    Hi 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

    #1019030

    Hi,

    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,
    Rikard

    #1019033

    Hi 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?

    #1019335

    Hi,

    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,
    Rikard

    #1019416

    Hi 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!

    #1019488

    Hi,

    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,
    Rikard

    #1019498

    It 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?

    #1019549

    Hi 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

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.