Viewing 2 replies - 1 through 2 (of 2 total)
  • to bring the plugin into line with the default widget title behaviour of most plugins, i.e. not to show a title if the title is left empty:

    goto
    plugins – installed plugins Configurable Tag Cloud click edit – then select from the list on the right: configurable-tag-cloud-widget/widget_28.php

    change two lines (shown after the changes):

    line 35:

    $title = apply_filters('widget_title', empty($instance['title']) ? __('') : $instance['title']);

    and line 55:

    if($title!='') echo $before_title.$title.$after_title;
    Thread Starter Adam Saverian

    (@adamsaverian)

    My line 35 already looks exactly like the one you posted above. PS. I was able to get rid of the title via some other line of code. I think I just took out word ‘title’ somewhere.

    I have no idea why it adds a title by default. If I wanted a title I would add one. I suggest letting default wordpress widget behavior remain default so that if I don’t add a title a title isn’t automatically included.

    Just my opinion, thanks fro the response.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Configurable Tag Cloud (CTC)] How can I get rid of "Tags" title shown in sidebar?’ is closed to new replies.