The theme provider doesn't reply very promptly...
On Wordpress "For child theme, look into functions.php of the child theme example, there you will find info on both how to activate Tip31 and deactivate Tip13."
THIS is in the function.php - which implies there is a child theme's function.php
If you're using child theme, search for Tip13 in child theme's functions.php file to remove Open Sans.
*/
wp_enqueue_style( 'tinyframework-fonts',
tinyframework_fonts_url(),
array(),
null );
// 5.2 - Add CSS file of the Font Awesome icon font (local version), used in the main stylesheet.
wp_enqueue_style( 'font-awesome',
get_template_directory_uri() . '/fonts/font-awesome/css/font-awesome.min.css',
array(),
'4.7.0',
'all' );
and
/* Tip31 - Support for aditional Google Fonts. Load Google Fonts stylesheet.
*
* Bellow are examples on how to add more Google fonts as your system fonts.
* System fonts will also be used in the visual editor.
*
* Get the link to your fonts @link [
google.com...]
*
* Remember, using many font styles can slow down your webpage, so only select the font styles that you actually need on your webpage.
* We recommend using no more than 3 fonts styles.
*
* To test the font below, paste this into your post:
*
* <p style="font-family: 'Audiowide', cursive; font-weight: 400; font-size: 30px;">Testing google font</p>
*/
/* translators: If there are characters in your language that are not supported by Noto Serif, translate this to 'off'. Do not translate into your own language. */
/*
if ( 'off' !== _x( 'on', 'Audiowide font: on or off', 'tiny-framework' ) ) {
$fonts[] = 'Audiowide:400italic,700italic,400,700';
}
*/
/* translators: If there are characters in your language that are not supported by Inconsolata, translate this to 'off'. Do not translate into your own language. */
/*
if ( 'off' !== _x( 'on', 'Inconsolata font: on or off', 'tiny-framework' ) ) {
$fonts[] = 'Inconsolata:400,700';
}
*/
/* translators: To add an additional character subset specific to your language, translate this to 'greek', 'cyrillic', 'devanagari' or 'vietnamese'. Do not translate into your own language. */
$subset = _x( 'no-subset', 'Open Sans font: add new subset (greek, cyrillic, vietnamese)', 'tiny-framework' );
if ( 'cyrillic' == $subset ) {
$subsets .= ',cyrillic,cyrillic-ext';
} elseif ( 'greek' == $subset ) {
$subsets .= ',greek,greek-ext';
} elseif ( 'devanagari' == $subset ) {
$subsets .= ',devanagari';
} elseif ( 'vietnamese' == $subset ) {
$subsets .= ',vietnamese';
}
if ( $fonts ) {
$fonts_url = esc_url( add_query_arg( array(
'family' => urlencode( implode( '|', $fonts ) ),
'subset' => urlencode( $subsets ),
), 'https://fonts.googleapis.com/css' ) );
}
return $fonts_url;
}
endif;
/**