Iconic
Change Position Of Swatches In The Catalog
Coming soon: Iconic WooCommerce Attribute Swatches is becoming part of Kadence Shop Kit. You may see both names used while we update the product, documentation, and customer experience.
Swatches in the catalog currently show up after the shop loop item ( woocommerce_after_shop_loop_item ). It’s possible to change this to any of the following locations:
woocommerce_before_shop_loop_itemwoocommerce_before_shop_loop_item_titlewoocommerce_shop_loop_item_titlewoocommerce_after_shop_loop_item_titlewoocommerce_after_shop_loop_item
Using the Code Snippets plugin, add the following code to your website:
function iconic_was_loop_position( $position ) {
return 'woocommerce_shop_loop_item_title';
}
add_filter( 'iconic_was_loop_position', 'iconic_was_loop_position', 10, 1 );You can change return 'woocommerce_shop_loop_item_title'; to your preferred location.
Filed under
Uncategorized
Was this page helpful?
Thanks for the feedback!