WooCommerce change item title position
add_action ( "woocommerce_before_shop_loop_item", "after_li_started", 9 );
function after_li_started () {
echo "<div class='li_inner'>";
}
add_action ( "woocommerce_after_shop_loop_item", "before_li_started", 10 );
function before_li_started () {
echo "</div>";
}
9 Related pages
- Woo add rating to all products
- Woo get category name by id
- Woo Show all products
- WooCommerce change item title position
- Woocommerce import sample data in woocommerce (with Product Images)
- WooCommerce number of products displayed per page
- WooCommerce product loop
- WooCommerce replace h2 from product-title
- WooCommerce shop page loop























