- This topic has 10 replies, 3 voices, and was last updated 9 years, 4 months ago by Tom.
-
AuthorPosts
-
December 2, 2014 at 10:20 pm #50842Merry Makowski
Hi guys, no idea why, but in spite of marking 0 widgets and saving that repeatedly,
http://prntscr.com/5cp46ball of them show up.
Do you know what I can be doing wrong to get such results?
Thank you, Merry
December 2, 2014 at 10:26 pm #50844Merry MakowskiHere is the page I am working with and all the footer widgets:
http://sfiandtripleclicks.com/December 2, 2014 at 10:47 pm #50845Merry MakowskiI have a Jetpack installed there and it has separate Widget settings. I tried with those settings unable and disable and I still was not able to make those widgets invisible.
December 2, 2014 at 11:56 pm #50860TomLead DeveloperLead DeveloperHi Merry,
Is that a page or post you’re trying to disable the widgets on?
When you choose 0 and save, does that option stick, or move back to default?
You can turn the widgets off globally in the Customizer, but I’m curious as to why you aren’t able to turn it off within the post/page – you certainly should be able to.
Let me know π
December 3, 2014 at 9:24 am #51050Merry MakowskiHi Tom, thanks so much for caring and being here for us.
This is a page and when I clicked on save, it stayed on zero.
Today I got read of the footer widgets completely,
but the only option for it, was to change the global footer settings to zero in your addons layout settings. So I can’t have one page with widgets and another without, it seems like your addons overite the regular footer widget choices on the side of page edit.Interesingly, with side widgets is diffrent, in your addons I have chosen “content – sidebar”, and in the page sidebar layout, I’ve chosen “content – no sidebar”, and it works.
Tom, if you need my login to look at this strange widget behavior yourself, I more than gladly provide that for you. If you opened my page, are the colors ok or too greenish…
December 3, 2014 at 10:13 am #51055TomLead DeveloperLead DeveloperDefinitely something strange happening on your site – can’t reproduce it on my end. The metabox on the page itself has priority over the Customize option.
If you’d like you can send me a temp admin login to support@generatepress.com and I can take a look around π
December 5, 2014 at 3:34 pm #51704Tom SHi Tom
I have the same issue. The footer widgets are disabled when set to zero on my blog page, but reappear when I set “Set Front Page – Posts Page” to the blog page I have created for posts. It appears that this is where the override is occurring.
Cheers
Tom S
December 6, 2014 at 10:20 am #51901TomLead DeveloperLead DeveloperHi Tom,
By default, WordPress ignores any and all metabox entries if the page is set to the display posts.
Recently, I discovered a way to remedy this when using Page Headers, so I’ll be looking to apply the same solution to the other options.
For now, if you’d like to hide the footer widgets on the blog, you can use this CSS:
.blog .footer-widgets { display: none; }
Let me know if you have any other questions π
April 23, 2015 at 11:36 am #101658Mark HannonI was also forced to use the “nuclear” option and hide the footer widgets on all but the front page with CSS on my child theme. I had set the global options to no footer widgets with the intent to show 4 on the home page only. Only problem was that every time I went to make the change on the home page, after updating, the original settings remained. I tried several times and every time was the same.
I finally set the global settings to 4 footer widgets for all and added this to my header:
if ( is_front_page() ) { echo "<style type=\"text/css\">.footer-widgets{display:none}</style>"; }
Don’t know if this is a plugin or a theme issue but until it’s resolved, feel free to use my solution.
April 23, 2015 at 11:37 am #101659Mark HannonURL for the above post by the way: http://www.americandrystripping.com/
April 23, 2015 at 2:11 pm #101683TomLead DeveloperLead DeveloperHere’s a pure CSS version:
.footer-widgets { display: none; } .home .footer-widgets { display: block; }
When 1.2.9.6 is released, you’ll be able to do this: http://generatepress.com/forums/topic/placeholders-for-hidden-footer-widgets-showing/#post-101409
-
AuthorPosts
- You must be logged in to reply to this topic.