Title: vicctim's Replies | WordPress.org

---

# vicctim

  [  ](https://wordpress.org/support/users/vicctim/)

 *   [Profile](https://wordpress.org/support/users/vicctim/)
 *   [Topics Started](https://wordpress.org/support/users/vicctim/topics/)
 *   [Replies Created](https://wordpress.org/support/users/vicctim/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/vicctim/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/vicctim/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/vicctim/engagements/)
 *   [Favorites](https://wordpress.org/support/users/vicctim/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Advanced Free Shipping for WooCommerce] Price setting for each rule](https://wordpress.org/support/topic/price-setting-for-each-rule/)
 *  Thread Starter [vicctim](https://wordpress.org/support/users/vicctim/)
 * (@vicctim)
 * [12 years, 1 month ago](https://wordpress.org/support/topic/price-setting-for-each-rule/#post-5065972)
 * Exactly! I wonder if you can ignore the free shipping and assign a value to shipping.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce Boleto] Identificar pagamento](https://wordpress.org/support/topic/identificar-pagamento/)
 *  [vicctim](https://wordpress.org/support/users/vicctim/)
 * (@vicctim)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/identificar-pagamento/#post-4077935)
 * Tem algum retorno do boleto pago pelo painel de administrador do woocommerce?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Download Monitor] thumbnails in backend preview way too large!](https://wordpress.org/support/topic/thumbnails-in-backend-preview-way-too-large/)
 *  [vicctim](https://wordpress.org/support/users/vicctim/)
 * (@vicctim)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/thumbnails-in-backend-preview-way-too-large/#post-4528669)
 * Change this file: download-monitor/includes/admin/class-dlm-admin-cpt.php
 * replace this line:
    `echo $ download-> get_the_image ('');` by this: `echo $ 
   download-> get_the_image ('medium-thumb');`
 * If it does not, add this to your functions.php file:
 *     ```
       if (function_exists ('add_theme_support')) {
       add_theme_support ('post-thumbnails');
       set_post_thumbnail_size (615, 400, true);
       add_image_size ('slider-thumb', 615, 400, true);
       add_image_size ('large-thumb', 300, 195, true);
       add_image_size ('medium-thumb', 108, 70, true);
       add_image_size ('small-thumb', 48, 48, true);
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Download Monitor] Image sizes in templates](https://wordpress.org/support/topic/image-sizes-in-templates/)
 *  [vicctim](https://wordpress.org/support/users/vicctim/)
 * (@vicctim)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/image-sizes-in-templates/#post-4612513)
 * I was also with this problem until I found the solution.
 * Enabling Support for Post Thumbnails
 * Themes have to declare their support for post thumbnails before the interface
   for assigning these images will appear on the Edit Post and Edit Page screens.
   They do this by putting the following in their functions.php file:
 * In functions.php file add this code:
 *     ```
       if ( function_exists( 'add_theme_support' ) ) {
       add_theme_support( 'post-thumbnails' );
       set_post_thumbnail_size( 615, 400, true );
       add_image_size( 'slider-thumb', 615, 400, true );
       add_image_size( 'large-thumb', 300, 195, true );
       add_image_size( 'medium-thumb', 108, 70, true );
       add_image_size( 'small-thumb', 48, 48, true );
       }
       ```
   
 * In file: content-download-box.php, replace this line:
    `<?php $dlm_download->
   the_image(); ?>` this `<?php $dlm_download->the_image('large-thumb') ; ?>`
 * This ‘large-thumb’ will resize the image to 300x195px.

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