Even if you use the settings page to increase the number of blocks, the number of blocks shown on administer -> blocks is still one. This is causes by the for loop in helptip_block for the 'info' case. Inside the for loop is the line

$blocks[0]['info'] = t('Help tips %num', array('%num' => $i));

which should be

$blocks[$i]['info'] = t('Help tips %num', array('%num' => $i));

Comments

nevets’s picture

So it turns out that is only part of the problem. There is no way to associate a particular help tip with a block.

Dave Cohen’s picture

Assigned: Unassigned » Dave Cohen

There is a way to make that association, using weights. Each block can filter to show helptips of only certain weights. Not perfect, but workable. If you have ideas I am all ears.

bluecobalt’s picture

Just downloaded the latest version of help tip for 4.7 from cvs and see that you still have not fixed this problem. Wondering if you are planning on fixing this so that people who download the module are able to create more than one block?

thanks,
blue

Dave Cohen’s picture

Status: Active » Fixed

Somehow I had checked this into DRUPAL-HEAD but not DRUPAL-4-7. Until today. Thanks bluecobalt.

Anonymous’s picture

Status: Fixed » Closed (fixed)