Using the awesome Font icons in Woocommerce?

1

How to use the Awesome Font icons on woocommerce pages?

    
asked by anonymous 18.12.2017 / 21:46

1 answer

2

I believe that this way it will work, go in functions.php and add that code.

add_action('wp_enqueue_scripts','enqueue_load_fa');functionenqueue_load_fa(){wp_enqueue_style('load-fa','https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css');}

Nowjustaddtheiconsbythetexteditor,sotype

<iclass="fa fa-home fa-fw" aria-hidden="true"></i>

Source: link a>

  

Woocomerce Official Documentation on Font-Awesome

     

link

List of icons: link

    
18.12.2017 / 23:07