• Hi! Newbie to such a complex coding system like in the Bones theme. Here’s the site I’m working on:
    https://www.oliverscuisine.com

    Right now I have the hours of operation put in the footer because it’s the only place I could find in the editor that would allow me to type what I needed to appear and it actually appear on the homepage.

    Problem is, because it’s in the footer, it now shows up on every page. I don’t want to hide the footer on the other pages because I’d like the restaurant info to stay.

    Side comment- if you know why the word LUNCH isn’t showing up on my mobile version, I’d love to know LOL Thank you!

Viewing 1 replies (of 1 total)
  • This is the conditon you should apply
    Go to Dashboard > Appearence > editor > footer and place this condition where you have written 716.877.9662

    This statement will restrict 716.877.9662 from other pages and will only be shown on home page

    <?Php if(is_front_page() || is_home())
    {
    echo “716.877.9662”;
    }
    ?>

    Hope it helps !

Viewing 1 replies (of 1 total)
  • The topic ‘How to add hours to website homepage (Bones Theme)’ is closed to new replies.