Hiding bar on home page/one page
-
Hey there. Thanks for the code that fixed my other question about putting the bar on the bottom. Two more things for ya now.
1- Is there a way to make it go below the bottom footer as it’s end position, so it doesn’t cover it?
2- I’d like to show the bar only on post pages…or any page besides the front page as there are a number of ways to optin there. I found your earlier post and tried that CSS but it’s not working. I’m wondering if maybe it conflicts with the bottom solution? Or well, you’ll know better than me. I used: add_filter( ‘mctp_show_bar’, ‘myprefix_show_bar’ );
function myprefix_show_bar() {
// only show on single posts and pages
if( is_single() ) {
return true;
}return false;
}Thanks! – Jason
- The topic ‘Hiding bar on home page/one page’ is closed to new replies.