• Resolved mikexavier

    (@mikexavier)


    Is it possible to swap out the home text with an icon?

    I tried putting a fontawesome (which is installed) shortcode in place but it didn’t take it.

    thanks!

    Mike

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Anthony Hortin

    (@ahortin)

    Hi Mike,

    That’s not too difficult to achieve with some css and tweaking of the breadcrumb options…

    In the WC Breadcrumbs settings, set the following values:
    Before: <span class="crumb">
    After: </span>
    Home text: &nbsp;

    Then add the following css to your stylesheet…

    
    .woocommerce-breadcrumb .crumb:first-child a {
        text-decoration: none;
    }
    .woocommerce-breadcrumb .crumb:first-child a::before {
        font-family: FontAwesome;
        content: '\f015';
    }
    

    This should change the Home text to a FontAwesome home icon.

    Thread Starter mikexavier

    (@mikexavier)

    amazing, thanks so much!

    Plugin Author Anthony Hortin

    (@ahortin)

    My pleasure. Glad it all worked for you ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Swap Home for Icon’ is closed to new replies.