-
Author
-
May 23, 2018 at 13:55 #198685kalinki72Participant
Hi
because of the new data protection in Europe (DSGVO)I would like to switch off the
google font how can I adjust this?Thanks
May 23, 2018 at 18:12 #198746RaduModeratorHi,
Just go to wp-admin -> theme options -> fonts -> set standart font like arial for all headings and body.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 24, 2018 at 19:04 #198885kalinki72Participantwas that, that is dangerous for the new privacy DSGVO?
http://prntscr.com/jm43ql
ThanksMay 24, 2018 at 19:30 #198894RaduModeratorHi,
Not sure what do you mean.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 24, 2018 at 19:40 #198896kalinki72Participantopen google chrome and then the developer tool.
open my screenshot (look link)
http://prntscr.com/jm43ql
it is still queried fonts.googleapis
can you tell me if this is generated by the Kleo Theme?
if transmitted with an IP address or other data, this is prohibited by the new data protection laws in Europe
I hope you understand me 😉
Thank you!May 24, 2018 at 20:06 #198910RaduModeratorHi,
It may be generated by some third party plugin, if you change the theme to default wp theme you still have that request ?
It may be loaded by the revslider.
Let me know
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMay 25, 2018 at 09:18 #198966kalinki72ParticipantI have disabled all plugin that comes from Kleo theme but where can I turn it off because I’m the site now offline because of bus money danger urgently need help thanks
May 25, 2018 at 09:22 #198967kalinki72Participantsorry please delete my last message it is NOT Kleo Theme thanks
May 25, 2018 at 10:52 #198969kalinki72ParticipantSo now it’s officially the Google font is definitely coming from the KLEO THEME wwir have tested in the lab all plugins disabled as soon as we change the theme is the request for Google fonts no longer available we switch to Kleo Theme the request is active again. We ask for help
May 25, 2018 at 19:26 #199022kalinki72Participanturgently need help because a connection to google font is no longer allowed (DSGVO) your topic but despite the system fonts a connection builds
May 25, 2018 at 19:50 #199024RaduModeratorHi,
Tried multiple times to reproduce it but i cannot… see the search of the google apis on our entire kleo code
Having settings like this in a previous reply ( https://archived.seventhqueen.com/forums/topic/urgent-google-fonts-disabled/#post-198746 ) will make no google font request, see the next screenshot.
Maybe the Revolution Slider makes a google font request cuz when i have settings like that where the google fonts is not loaded at all in homepage it’s loaded… the main difference it’s in home revolution slider it’s running and in the image-carousel not.
Let me know
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solutionMay 25, 2018 at 21:11 #199036kalinki72ParticipantHi
that cost me now over 5 hours The code comes from the theme or? I have disabled all plugins it must come from the theme, if you aim at line in functions.php (1474) turns off then the connection is gone or please test to give noticeAttachments:
You must be logged in to view attached files.May 29, 2018 at 17:46 #199284RaduModeratorHi,
Great if you had solved
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 4, 2018 at 18:47 #199884dlxParticipantHi!
How can we disable this by a function on the child theme in functions.php?
I´ve tried this:
add_action( ‘wp_head’, ‘remove_my_class_action’ );
function remove_my_class_action(){
global $kleo_theme;
remove_action( ‘wp_head’, array( $kleo_theme, ‘render_css’ ), 15 ) );
}But it causes an error 500
June 5, 2018 at 16:41 #199974RaduModeratorTry with this function
COPY CODE/* Deqeue the google fonts */ function sq7r_deque_kleo_gogole_fonts() { if( function_exists('bp_is_active') && !bp_is_members_component()) { wp_deregister_style('kleo-google-fonts', $google_link, array(), '', 'all' ); wp_dequeue_style('kleo-google-fonts'); } } add_action('wp_enqueue_scripts', 'sq7r_deque_kleo_gogole_fonts',999);
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.