palatinate11
Forum Replies Created
-
Hi bimps, would you mind sharing your solution? I’d like to use this plugin with Roots too and I don’t really want to mess with the enqueing of scripts unless I have to.
Right now the error I see is that, while the lightbox effect works, I don’t see comments or captions or the fwd, rwd buttons. I can only use my back button on the browser to get back to the gallery view.
I am also using Royal Slider for a slideshow on the home page so that might be a conflict.
Just wondering what you did. I am trying to work with a child theme of Roots that I created so I can refresh Roots now and then, so that’s why I am trying to avoid editing it too much unless I have to.
Thanks in advance!
Forum: Fixing WordPress
In reply to: wp_title not dispayedI fixed it for my site. My blog page is a sub page of the about page and that was causing the problem. There is no is_subpage() condition so I went about it the other way around – every page on my site is a page, the news page is the only blog page. Here’s my code:
<h1><?php if (is_page()) { wp_title(''); } else { echo "News"; } ?></h1>
Forum: Fixing WordPress
In reply to: CMS – blog page h1 doesn’t showI fixed it for my site. My blog page is a sub page of the about page and that was causing the problem. There is no is_subpage() condition so I went about it the other way around – every page on my site is a page, the news page is the only blog page. Here’s my code:
<h1><?php if (is_page()) { wp_title(''); } else { echo "News"; } ?></h1>
Forum: Fixing WordPress
In reply to: CMS – blog page h1 doesn’t showDoes anyone else have this problem? Any suggestions for fixing it?
Forum: Fixing WordPress
In reply to: wp_title not dispayedI have the same problem. I’m using WP as a CMS and have static pages except for the “news” page which is set in settings/reading to be the blog page. H1s show up for all the static pages but the h1 tags are empty for the news page even though it has the title “news”.
Did you find out what was going on?