Hey there,
Open Sans is added via functions.php starting on line 207. The font is added with a function which is the proper way.
The way you change the font is to remove the function with your own function then add your function include the google font you want.
Here is how you remove the open sans font. In your child theme add the following:
function remove_wpforge_fonts() {
remove_action( 'wp_enqueue_scripts', 'wpforge_google_fonts', 0 );
}
add_action( 'after_setup_theme', 'remove_wpforge_fonts', 9 );
and right after that you add your own function like this:
if ( ! function_exists( 'add_my_fonts' ) ) {
function add_my_fonts() {
wp_enqueue_style('indieflower', '//fonts.googleapis.com/css?family=Indie+Flower);
}
add_action( 'wp_enqueue_scripts', 'add_my_fonts', 0);
}
now of you want to add multiple fonts then you would do this:
if ( ! function_exists( 'add_my_fonts' ) ) {
function add_my_fonts() {
wp_enqueue_style('indieflower', '//fonts.googleapis.com/css?family=Indie+Flower');
wp_enqueue_style('roboto', '//fonts.googleapis.com/css?family=Roboto');
wp_enqueue_style('lobster', '//fonts.googleapis.com/css?family=Lobster');
}
add_action( 'wp_enqueue_scripts', 'add_my_fonts', 0);
}
then you change the font family in your child theme style sheet. Don’t forget if you use WP-Forge, leave a review. Thanks and as always enjoy!