• Resolved lucydeetz

    (@lucydeetz)


    Hello,

    This is my first experience with WordPress and I have set up a blog with the Placid theme.

    I uploaded a header image and hid the title above it with a CSS code.

    I’ve just realized the header is showing on the home page only. If I click on a post or on a page, the header image does not appear.

    I have tried deleting all the custom CSS code and deleting/reinstalling the theme and tweaking with its options to no avail.

    Am I doing something wrong?

    Thanks!

    Lucia

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter lucydeetz

    (@lucydeetz)

    And another question…

    I can’t for the life of me find the code for the posts meta, “Posted on [date] By [author]”. I’d like to translate it and I checked the code on the Chrome Console, I searched for it in every file in my theme and I can’t find any results.

    Does anyone know where that code is located?

    Lucia

    • This reply was modified 6 years, 10 months ago by lucydeetz.
    Theme Author paragonthemes

    (@paragonthemes)

    Hello @lucydeetz,
    We are very sorry for the late reply.
    1. Header Image is designed in such way that it will appear only on home page. So if you need that image on inner pages, you need to customize it.
    2. If you want to localize the theme on your own language, you can translate the theme easily from here. https://translate.www.ads-software.com/projects/wp-themes/placid

    For more dedicated support, use theme official support forum.

    Thank you

    Hello,

    You can change a little in header.php.
    Find at the bottom the following code:

    
      <div class="container">
      <?php if(is_front_page() || is_home() ) : ?>
       <?php if ( get_header_image() ) : ?>
       <img src="<?php echo esc_url( get_header_image()) ; ?>">
      <?php endif; endif;
    

    and change this into:

    
      <div class="container">
       <?php if ( get_header_image() ) : ?>
       <img src="<?php echo esc_url( get_header_image()) ; ?>">
      <?php endif;
    

    When you update this theme the changes are lost, please create a child theme first.

    Thread Starter lucydeetz

    (@lucydeetz)

    Thank you so much for the replies!

    After much tweaking, I found out it was actually the logo image I was aiming for and coming from a few years of blogging on Blogger, where the header behaves in a different way, it took some time to get used to the WordPress platform.

    As for the translation, I partly translated the theme through a plugin and will gladly add the Italian lines in!

    Lucia

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Header showing on homepage only’ is closed to new replies.