Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1248104

    Francis
    Participant

    Hello,

    In the woocommerce cart view I would like to change the “x” remove this item button for the trash icon [x_icon type=”trash-o”] and I don’t seem to find the appropriate file to make the changes.

    Any ideas? Thank you very much!

    #1248231

    Rupok
    Member

    Hi there,

    Thanks for writing in! You can add this under Custom > JavaScript in the Customizer.

    jQuery ( function( $ ) { 
      $('.woocommerce .cart_item .remove').html('<i class="x-icon x-icon-trash-o" data-x-icon="" aria-hidden="true"></i>'); 
    } );

    Hope this helps.

    Cheers!

    #1249040

    Francis
    Participant

    Thanks! That did the trick.

    #1249318

    Jade
    Moderator

    You’re most welcome, Francis.