How do you get the number ID of the block so that you can call it with the popup filter? I know how to with nodes but I don't see it anywhere on the blocks.

Comments

jdblank’s picture

OK I figured out that the block I want to call is from a module not a straight block. In this case I am still not getting it to work properly though. Following this syntax:

[popup block module= delta=]

I am not sure what goes in the delta.

The path to the block i want to call is:

http://drupal/admin/build/block/configure/im/im_friend_picker

I am guessing module=im and delta=im_friend_picker

but that does not seem to work.

Scheepers de Bruin’s picture

If you're using a standard block.tpl.php you can display the block within a page and check the source.
The standard block.tpl.php starting tag looks like this:

<div id="block-<?php print $block->module .'-'. $block->delta; ?>" class="block block-<?php print $block->module ?>">

For example the Navigation block provided by the User module outputs the following:

<div id="block-user-1" class="block block-user">

From this you can see that the module is User, and the delta is 1.

Scheepers de Bruin’s picture

Status: Active » Closed (fixed)

Closed due to inactivity