Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter almathorsteins

    (@almathorsteins)

    Thank you so much Mike, you gave me the start I needed! It works now

    Just for the record this is what I put in my styles.css

    .woocommerce-breadcrumb {
        font-family: 'FontAwesome';
    }
    .woocommerce-breadcrumb a:first-child:before {
        content: "\f015"
    }

    And this code in my functions.php

    add_filter( 'woocommerce_breadcrumb_defaults', 'jk_change_breadcrumb_home_text' );
    function jk_change_breadcrumb_home_text( $defaults ) {
        // Change the breadcrumb home text from 'Home' to a single space
    	$defaults['home'] = ' ';
    	return $defaults;
    }

Viewing 1 replies (of 1 total)