• Resolved suiluj

    (@suiluj)


    I noticed that the aws search widget does look strange in my left sidebar of the woocommerce shop page.
    It is placed outside the sidebar and does ignore the padding of the other widget (product category filter)

    I guess it has to do with the latest update because everything was fine before.

    The page I need help with: [log in to see the link]

Viewing 7 replies - 1 through 7 (of 7 total)
  • I use aws search widget also and it seems that the coding of the widget has changed in the last update. Is there any way you could change it back? The update broke layout of the site and I had to return using the old version.

    Plugin Author ILLID

    (@mihail-barinov)

    Hello,

    Please try the following – open advanced-woo-search/includes/widget.php file, find lines

    if ( $title ) {
                echo $before_widget;
                echo $before_title;
                echo $title;
                echo $after_title;
    }

    and replace with

    echo $before_widget;

    if ( $title ) {          
                echo $before_title;
                echo $title;
                echo $after_title;
    }
    Thread Starter suiluj

    (@suiluj)

    @mihail-barinov i edited the file but it did not change anything.

    Same here, no change.

    Plugin Author ILLID

    (@mihail-barinov)

    Please try to update to version 2.22 that was released just now.

    Thread Starter suiluj

    (@suiluj)

    @mihail-barinov Thanks a lot! Everything is perfect again! 🙂

    Could you explain the bug (i’m just curious)

    Plugin Author ILLID

    (@mihail-barinov)

    @suiluj

    Well there was missed $before_widget variable when the widget title is not specified.
    $before_widget can contain some markup and without it widgets sidebar can be broken.

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘Search widget destroy left sidebar view’ is closed to new replies.