#5 OK
//function context_condition_theme_context_page_condition() { function context_condition_theme_init() {
Scenario 1:
CONTEXT_B will always show, because CONTEXT_A is never recognized as active by context. If THEME_1 is active both will show.
Scenario 2:
CONTEXT_B will never show, because CONTEXT_A is never recognized as active by context. If THEME_1 is selected only CONTEXT_A will show.
I don't know if this is a special problem only in our drupal setup but this fixed it for us:
line 54 context_condition_theme.module
function context_condition_theme_context_page_condition() {
changed to:
function context_condition_theme_init() {
Needs review
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
#5 OK
//function context_condition_theme_context_page_condition() {
function context_condition_theme_init() {