Widget Logic not working
-
Topic
-
Using the builder, my home page has a blog roll on it. I am forced to use default right sidebar, as opposed to a custom widget area. I have a signup box at the top of right sidebar default.
I do not want to display the signup form on front page, or on the “Thank you for subscribing” and others…
When I use Widget logic, it works to hide the sign up on the home page with
! is_front_page()
and I can hide it on the signup page with
! is_page( 1151 )
but it breaks both pages when i try the traditional
! is_front_page() || ! is_page( 1151 )
and there are many other scenarios where I want to control the widgets without the headache of widget areas. Seems the logic of widget areas is redundant to me. I would rather hard code for as much effort as the widget areas cause to customize.
Thoughts?
- The forum ‘Akita Responsive WordPress Theme’ is closed to new topics and replies.