Forum Replies Created
-
In reply to: Genesis remove a widget area
Ah yes I did go the shortcode route. So what other ways are there, I did not see another option. thanks
In reply to: Genesis remove a widget areaI finally got it to go away like this
if (is_bbpress ())
if ( is_active_sidebar( ‘social-icons’ ) || is_active_sidebar( ‘click-here’ ) || is_active_sidebar( ‘split-sidebar-left’ ) || is_active_sidebar( ‘split-sidebar-right’ )) {
but it removes it sitewide
In reply to: Genesis remove a widget areaIt’s with the conditional, I have the sticky social icons on the right side on all my pages fixed. Don’t know if that is causing it to stay cause I just can’t seem to remove it from the forums pages, are there any alternatives to displaying a login section? As I said this genesis child theme does not have a registered sidebar, however I went in and registed the primary and secondary sidebar just so I could get the log in on there, but with that fixed widget in the way, it just pushes that sidebar off the left of the sticky widget.
In reply to: Genesis remove a widget areathanks. I tried that and it did not work.
I also tried
if (!is_bbpress ())
remove_action ( ‘genesis_after_header’, ‘the_411_extras’, ‘genesis_after_sidebar_widget_area’ );
if ( is_active_sidebar( ‘social-icons’ ) || is_active_sidebar( ‘click-here’ ) || is_active_sidebar( ‘split-sidebar-left’ ) || is_active_sidebar( ‘split-sidebar-right’ )) {and
if (!is_bbpress (‘forums’))if ( is_active_sidebar( ‘social-icons’ ) || is_active_sidebar( ‘click-here’ ) || is_active_sidebar( ‘split-sidebar-left’ ) || is_active_sidebar( ‘split-sidebar-right’ )) {
with and without the forums part. nothing seems to remove it.
In reply to: Genesis remove a widget areaI tried it as that
In reply to: Genesis remove a widget areayes that one. I tried that. doesn’t do anything