• Resolved aiuto

    (@aiuto)


    Hello, I encounter a function that I find inconvenient for my site:

    “The photos are displayed with a line of technical information above them. I would like to remove this information line. this appears on all pages where I have included photos”

    would anybody know how can I achieve this? Thank !

Viewing 7 replies - 1 through 7 (of 7 total)
  • It would help us help you if you included a link to your site.

    Without having your circumstances in front of me, you could use your browser inspector to view the html + css of your web pages, and put a phrase of custom css in your customizer along the lines of:

    "some list of classes" {
     display:none;
    }
    Thread Starter aiuto

    (@aiuto)

    Here is a link to one page with photo:

    https://www.gassergisler.ch/aktuell/1-reise-2/

    The line “Veröffentlicht am 02/02/2018 bei 1024 × 768 in aktuell” is unwanted and I would like to remove. Thank you!

    It seems to be part of your theme’s attachment or image template file. What theme are you using? Where did you download it from?

    Thread Starter aiuto

    (@aiuto)

    The theme is “twenty twelve” which is part of free themes taken from WordPress platform. No image template and no customization.

    You’ll need to create a child theme and modify the image.php file to remove that part.

    Yes catacaustic, that would work. An easier change that is about as good is to:
    – Login to the website dashboard
    – In the theme customizer > additional css, add

    footer.entry-meta {
        display: none;
    }

    The content will still be transferred, it just won’t be displayed, it won’t take up space.

    Thread Starter aiuto

    (@aiuto)

    Great! this question seems to be answered by your indication RossMitchell, thanks!
    Some other issues are still there, they will come on another topic.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘irrelevent technical information’ is closed to new replies.