ææÑÏÈÑíÓ WordPress ææßæãÑÓ WooCommerce æÖÚ / ÊÛííÑ ÇíÞæäÉ Add To Cart
CSS Snippet: Add an Icon to the Add to Cart Buttons – WooCommerce
Changing the WooCommerce Cart Icon - Woocommerce cart icon class
Change shopping cart icon



If you want a better range of icons, Storefront theme already uses a library of icons from FontAwesome to print special icons on the screen. If your theme doesn’t support FontAwesome, you can simply add a script in the header to load the special font.

In this example, I wish to add a “Shopping Cart +” icon provided by Fontawesome, which comes with a code “\f217”.
ßæÏ:
button.single_add_to_cart_button:before {
   display: inline-block;
   font-family: FontAwesome;
   float: left;
   content: "\f217";
   font-weight: 300;
   margin-right: 1em;
}
ÇáãÑÌÚ:
https://www.businessbloomer.com/wooc...-cart-buttons/