0

New to Drupal, trying to wrap my mind around the Blocks concept.

Am I right in concluding that I cannot have the SearchForm on the right side (sidebar second) for one ContentType, and on the left side (sidebar first) for another ContentType?

I'm talking standard 7(.17) with no extra modules or PHP "hacks".

apaderno
  • 28,547
  • 16
  • 75
  • 90
T4NK3R
  • 4,245
  • 3
  • 23
  • 25

2 Answers2

1

Standard Drupal will only allow you to specify the placement of blocks once. To achieve what you're after you'll need to look into using a contributed module like Context or Panels.

Personally used Context a fair bit in the past. It's pretty powerful but relatively simple to use.

drmonkeyninja
  • 8,490
  • 4
  • 31
  • 59
  • Thank you for answering. So this google-found statement: "enable multiple region selection in the block admin interface in Drupal 7.0 or via module" - is just false (have looked for it for hours) ? – T4NK3R Dec 04 '12 at 11:27
  • I believe it is false. Drupal can only store one block location in the database (if I recall correctly). I'd give Context a look as it will enable you to specify blocks based on content types. We have tended to use it as a complete replacement to the default blocks admin as it gives much greater flexibility. – drmonkeyninja Dec 04 '12 at 11:57
0

This module allows you to create several instances of a block, so you can duplicate a block and put the duplicates on other regions.