Hi GirlShrink, very weird.
Anyway,
to change the skin, in your child-theme functions.php put this:
add_filter('tc_opt', 'my_skin', 20, 2);
function my_skin($value, $option){
$skin_name = 'blue';
if ( $option != 'tc_skin' )
return $value;
return "$skin_name.css";
}
change “blue” with the skin you want, options are:
black, black2, blue, blue2, blue3, green, gree2, grey, grey2, orange, orange2, purple, purple2, red, red2, yellow, yellow2
About the fonts, similar to the one above:
add_filter('tc_opt', 'my_gfont', 30, 2);
function my_gfont($value, $option){
$font = '_g_cantarell';
if ( $option != 'tc_fonts' )
return $value;
return $font;
}
in this case options are a lot more (you have to use the value in the first column):
Google fonts pairs:
_g_fjalla_cantarell -> Fjalla One & Cantarell
_g_lobster_raleway -> Lobster & Raleway
_g_alegreya_roboto -> Alegreya & Roboto
_g_lato_grand_hotel -> Lato & Grand Hotel
_g_dosis_opensans -> Dosis & Open Sans
_g_dancing_script_eb_garamond -> Dancing Script & EB Garamond
_g_amatic_josephin -> Amatic SC & Josefin Sans
_g_oswald_droid -> Oswald & Droid Serif
_g_playfair_alice -> Playfair Display & Alice
_g_medula_abel -> Medula One & Abel
_g_coustard_leckerli -> Coustard Ultra & Leckerli One
_g_sacramento_alice -> Sacramento & Alice
_g_squada_allerta -> Squada One & Allerta
_g_bitter_sourcesanspro -> Bitter & Source Sans Pro
_g_montserrat_neuton -> Montserrat & Neuton
Web safe fonts pairs:
impact_palatino -> Impact & Palatino
georgia_verdana -> Georgia & Verdana
tahoma_times -> Tahoma & Times
lucida_courrier -> Lucida & Courrier
Single fonts:
_g_cantarell -> Cantarell
_g_raleway -> Raleway
_g_roboto -> Roboto
_g_grand_hotel -> Grand Hotel
_g_opensans -> Open Sans
_g_script_eb_garamond -> EB Garamond
_g_josephin -> Josefin Sans
_g_droid -> Droid Serif
_g_alice -> Alice
_g_abel -> Abel
_g_leckerli -> Leckerli One
_g_allerta -> Allerta
_g_sourcesanspro -> Source Sans Pro
_g_neuton -> Neuton
helvetica_arial -> Helvetica
palatino -> Palatino Linotype
verdana -> Verdana
time_new_roman -> Times New Roman
courier_new -> Courier New
Hope this helps.