Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

A. Due to URL escape characters in solr Solr searches, Drupal does not respect 'Page specific visibility settings' for blocks. You will have to manually un-escape the URL when configuring where your blocks are placed. This example (which involves patching Drupal core) may help.


Code Block
example: 'islandora/solr/search/%2A%3A%2A/atm_type_s%253A%2522Compositores%2522'

using: 'islandora/solr/search/*' will display (or remove) a block on every page that path is valid on

using: 'islandora/solr/search/%2A%3A%2A/atm_type_s%253A%2522Compositores%2522/*' will never display, even if this path is valid

...