Make title and content box appear as one unit

Bring Your Business to LifeSupportPopular WidgetMake title and content box appear as one unit

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #45528
    Xpark Media
    Keymaster

    This is a bug on the plug, you will have to edit the plugin. I will apply the fix on the next release.

    just move this code in line 119 and 120

    if( isset( $title ) )
    echo $before_title. $title . $after_title . "\n";
    

    just after line 123 so that the code looks like this

    $output  = $before_widget."\n";
    if( isset( $title ) ) echo $before_title. $title . $after_title . "\n";
    
    #45641
    Malin
    Participant

    Thanks so much for your reply! Just wanted to let you know that I wasn’t able to make it work doing exactly as you suggested. However, moving the $before_widget. did the trick.

    Now it looks like this in my plugin file:

    if( isset( $title ) )
    echo $before_widget. $before_title. $title . $after_title . “\n” ;

    And this seems to work as far as I can see…
    Thanks so much for your help!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.