There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021
[SOLVED] How to hide or make invisible Text-Widget in sidebar
#1
Jul 20, 2009, 10:28 AM
multiram
3 posts · Jul 2009
I got the latest version Atahualpa-3.4.2 with WP-2.8.2, I just want to know, how to hide or make invisible a Text-Widget in sidebar in Atahualpa-3.4.2 theme
#2
Jul 22, 2009, 07:58 AM
multiram
3 posts · Jul 2009
No reply so far: I feel this ain't a simple workaround, at least for me I'm not a coder! will any help available?
#3
Jul 22, 2009, 10:09 AM
lhanft
88 posts · Jul 2009
Cleveland, OH
Try the Widget Context plugin -- it lets you show widgets on some pages but not others.
#4
Jul 23, 2009, 07:10 AM
Flynn
3,768 posts · Oct 2008
Munich, Germany
You can do this with a CSS insert
div#id-of-widget {
display: none;
}
or
div.class-of-widget {
display: none;
}
#5
Jul 23, 2009, 09:02 AM
multiram
3 posts · Jul 2009
Flynn, Thanks a lot.. that code just worked like a CHARM