# Widgets Pack FAQ

 [The EDD Widgets Pack may be purchased here](https://easydigitaldownloads.com/downloads/widgets-bundle/).

 Once [installed](https://easydigitaldownloads.com/docs/how-do-i-install-an-extension/) and activated, this extension will give you 8 new custom Easy Digital Downloads widgets. You can view the new widgets by navigating to ***Appearance → Widgets*** in your WordPress Dashboard.

 The new widgets are:

- Top Sellers
- Related Downloads
- Most Recent (Download)
- Featured Download
- Random Download
- Most Commented (Download)
- Downloads Archive
- Downloads Calendar

 If you need help using or working with Widget areas, you can [read more in this tutorial](https://www.wpbeginner.com/beginners-guide/how-to-add-and-use-widgets-in-wordpress/).

### **FAQ** 

 **1. Why is the Most Commented Download Widget not working?**

 This widget works if comments have been enabled for the downloads post type. To enable comments, use the following code:

 ```
// Download Comment Supports
if ( ! function_exists( &#039;your_prefix_edd_download_supports&#039; ) ) {
    function your_prefix_edd_download_supports( $supports ) {
        $supports[] = &#039;comments&#039;;
        return $supports;
    }
}
add_filter( &#039;edd_download_supports&#039;, &#039;your_prefix_edd_download_supports&#039; );
```

 **2. How do I set a fixed size for the widget&#039;s thumbnail image?**

 The EDD Widgets pack allows you to set a fixed thumbnail size from code, to ensure the widget will look good on your theme. To do so, use the filters below:

 ```
// Set EDD Widgets Pack default image size
if ( ! function_exists( &#039;your_prefix_edd_widgets_thumbnail_size&#039; ) ) {
    function your_prefix_edd_widgets_thumbnail_size( $size ) {
        return array( &#039;56&#039;, &#039;56&#039; );
    }
}
add_filter( &#039;edd_widgets_top_sellers_thumbnail_size&#039;, &#039;your_prefix_edd_widgets_thumbnail_size&#039; );
add_filter( &#039;edd_widgets_most_recent_thumbnail_size&#039;, &#039;your_prefix_edd_widgets_thumbnail_size&#039; );
add_filter( &#039;edd_widgets_most_commented_thumbnail_size&#039;, &#039;your_prefix_edd_widgets_thumbnail_size&#039; );
add_filter( &#039;edd_widgets_related_downloads_thumbnail_size&#039;, &#039;your_prefix_edd_widgets_thumbnail_size&#039; );
// Set EDD Widgets Pack default image size for widgets that show only one download
if ( ! function_exists( &#039;your_prefix_edd_widgets_single_thumbnail_size&#039; ) ) {
    function your_prefix_edd_widgets_single_thumbnail_size( $size ) {
        return array( &#039;155&#039;, &#039;156&#039; );
    }
}
add_filter( &#039;edd_widgets_random_download_thumbnail_size&#039;, &#039;your_prefix_edd_widgets_single_thumbnail_size&#039; );
add_filter( &#039;edd_widgets_featured_download_thumbnail_size&#039;, &#039;your_prefix_edd_widgets_single_thumbnail_size&#039; );
```