mlddev
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Remove "Sale" tag on product imageI 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
In reply to: [WooCommerce] CSS – CustomizationFor 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
In reply to: [WooCommerce] Remove "Sale" tag on product imageIn your theme functions.php
Forum: Plugins
In reply to: [WooCommerce] Remove "Sale" tag on product imageThanks James ??
Forum: Plugins
In reply to: [WooCommerce] Remove "Sale" tag on product imageOr avoid the !important and use:
body.woocommerce span.onsale, body.woocommerce-page span.onsale { display: none; }
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?
Oh, I am using WP 3.4.2 and the 1.5.0 version of the plugin
Forum: Plugins
In reply to: [AutoNav Graphical Navigation and Gallery Plugin] custom post typesNever-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
In reply to: [Sociable] [Plugin: Sociable] Skyscraper NEVER shows up.All using most current version of WP 3.3.1
PHP 5.2.17
Forum: Plugins
In reply to: [Sociable] [Plugin: Sociable] Skyscraper NEVER shows up.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.