HB-Cumulus 1.2

11Feb09

I’ve just pushed out a new revision of HB-Cumulus. This isn’t a major update, rather more of a maintenance update in which I’ve:

  • Updated tagcloud.swf to that provided with WP-Cumulus 1.18, which includes a change that… “Improves mouse detection in transparent mode”
  • Sorted out the documenting of the licensing of the various components
  • Updated directory structure to better separate the 3rd party components and the HB-Cumulus code
  • Tidied up code to adhere closer to the Habari coding standards

You can get the latest revision from the HB-Cumulus project page.

As this is a new release, I’ve closed comments on the 1.1 post. If you encounter any problems, please ensure you update to rev 1.2 and if the problem still exists, leave a comment here.


4 Responses to “HB-Cumulus 1.2”  

  1. 1 Vivek Ayer

    Where exactly do you insert $theme->hbcumulus();? In the theme.php file? $theme is already pointing to something else. Do I wrap the hbcumulus function around those? Thanks a lot

  2. 2 Colin

    Vivek: You insert $theme->hbcumulus(); code into the template file for the page/location you want to display the cloud. For example, if you want to show it in your sidebar, insert it into sidebar.php, assuming your theme has a sidebar.php file.

    For example, if we take the sidebar.php file from K2 as supplied with Habari (make a copy of the whole theme to /path/to/habari/user/themes/ so you don’t make changes to the system supplied theme), you could add the following just after the “Search” div to show HB-Cumulus:

    
                    <div id="tags">
                        <h2><?php _e('Tags'); ?>&lt/h2>
                        <?php $theme->hbcumulus(); ?>
                    </div>
    
  3. 3 Colin

    HB-Cumulus 1.3 has now been released. Closing comments.

  1. 1 HB-Cumulus 1.3 :: Col’s Tech Stuff