Title: mlddev's Replies - page 6 | WordPress.org

---

# mlddev

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

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

 Search replies:

## Forum Replies Created

Viewing 10 replies - 76 through 85 (of 85 total)

[←](https://wordpress.org/support/users/mlddev/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/mlddev/replies/?output_format=md) [2](https://wordpress.org/support/users/mlddev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mlddev/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/mlddev/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/mlddev/replies/page/5/?output_format=md)
6

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove "Sale" tag on product image](https://wordpress.org/support/topic/remove-sale-tag-on-product-image/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [13 years ago](https://wordpress.org/support/topic/remove-sale-tag-on-product-image/#post-3756119)
 * I use a child theme that allows me to have a functions.php file to add customizations
   to, but you could do so in your main theme functions.php file.
 * You should be able to just added the code,
 *     ```
       // remove "Sale" icon from product images
       remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
       ```
   
 * to the the end of the functions.php file, before the last `?>` if it has one.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] CSS – Customization](https://wordpress.org/support/topic/css-customization/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [13 years ago](https://wordpress.org/support/topic/css-customization/#post-3758423)
 * For styling the price overlay banner thingy you can achieve that by editing your
   theme file CSS.
 * The example site is styling the HTML element:
    `<span class="price">` on the 
   category page, and not the `<span class="onsale">`
 * Since the “onsale” is already styled in a manner to hover over products with 
   a set sale price, you will need to decide how you want to deal with that, by 
   either hiding that through CSS, or removing it through your theme functions.php.
 * You can also do 2. with CSS, something like this:
 *     ```
       .woocommerce ul.products li.product .price ins, .woocommerce-page ul.products li.product .price ins {
         background: none repeat scroll 0 0 transparent;
         float: left;
         margin-right: 3px;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove "Sale" tag on product image](https://wordpress.org/support/topic/remove-sale-tag-on-product-image/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [13 years ago](https://wordpress.org/support/topic/remove-sale-tag-on-product-image/#post-3756108)
 * In your theme functions.php
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove "Sale" tag on product image](https://wordpress.org/support/topic/remove-sale-tag-on-product-image/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [13 years ago](https://wordpress.org/support/topic/remove-sale-tag-on-product-image/#post-3756074)
 * Thanks James 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove "Sale" tag on product image](https://wordpress.org/support/topic/remove-sale-tag-on-product-image/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [13 years ago](https://wordpress.org/support/topic/remove-sale-tag-on-product-image/#post-3756029)
 * Or avoid the !important and use:
 *     ```
       body.woocommerce span.onsale,
       body.woocommerce-page span.onsale {
          display: none;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AutoNav Graphical Navigation and Gallery Plugin] Post Image Thumb pulling wrong image](https://wordpress.org/support/topic/post-image-thumb-pulling-wrong-image/)
 *  Thread Starter [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/post-image-thumb-pulling-wrong-image/#post-3257484)
 * I think I figured it out.
 * I modified the code to:
 * `[autonav display="posts:product,list,notitle,thumb,attachment" order="ASCE" 
   columns="4" count="8" postid="product_cat:ring,necklace,earring"]`
 * With display=”attachment” and order=”ASCE” it’s now picking the correct image.
   Not ideal but it works… why does it ignore the Featured Image setting when I 
   have multiple attachments to a post?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AutoNav Graphical Navigation and Gallery Plugin] Post Image Thumb pulling wrong image](https://wordpress.org/support/topic/post-image-thumb-pulling-wrong-image/)
 *  Thread Starter [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/post-image-thumb-pulling-wrong-image/#post-3257438)
 * Oh, I am using WP 3.4.2 and the 1.5.0 version of the plugin
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[AutoNav Graphical Navigation and Gallery Plugin] custom post types](https://wordpress.org/support/topic/custom-post-types-32/)
 *  Thread Starter [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/custom-post-types-32/#post-3229113)
 * Never-mind, I figured it out.
 * Needed to use the postid=TYPE_cat for it to work with the “product” custom post
   type.
 * `[autonav display="posts:product,list,notitle,thumb" columns="4" count="2" postid
   ="product_cat:rings"]`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sociable] [Plugin: Sociable] Skyscraper NEVER shows up.](https://wordpress.org/support/topic/plugin-sociable-skyscraper-never-shows-up/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-sociable-skyscraper-never-shows-up/#post-2518359)
 * All using most current version of WP 3.3.1
 * PHP 5.2.17
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Sociable] [Plugin: Sociable] Skyscraper NEVER shows up.](https://wordpress.org/support/topic/plugin-sociable-skyscraper-never-shows-up/)
 *  [mlddev](https://wordpress.org/support/users/mlddev/)
 * (@mlddev)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-sociable-skyscraper-never-shows-up/#post-2518211)
 * I have the same problem as natedogg386, tested on multiple sites. Also, only 
   one of three sites I installed it on showed the graphics (buttons) on the admin
   end for Select Sociable Plugin.

Viewing 10 replies - 76 through 85 (of 85 total)

[←](https://wordpress.org/support/users/mlddev/replies/page/5/?output_format=md)
[1](https://wordpress.org/support/users/mlddev/replies/?output_format=md) [2](https://wordpress.org/support/users/mlddev/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mlddev/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/mlddev/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/mlddev/replies/page/5/?output_format=md)
6