Hi Kriesi-Team,
Unfortunately, local fonts are no longer used on my site. I did not notice before, where is the error, thank you!
How can I send you the screenshots
Regrads Martina
Hi,
Thank you for the inquiry.
There seems to be an issue with your SSL Certificate, which might be the reason why the font files are not loading correctly. Please try to renew the SSL certificate.
You should also check if the font files actually exist in the wp-content/uploads/avia_fonts/type_fonts folder. If the files are missing, remove the font entry in the Enfold > Import/Export > Custom Font Manager, then try to upload the font package again.
Best regards,
Ismael
The fonts are in the folder: https://ibb.co/SnPRB3M
Hi,
Where do you get the error? Regarding the local fonts, try to add this code in the functions.php file of your local installation.
add_filter('avf_custom_uploaded_fonts_url', function($url, $orig, $file, $info) {
$url = str_replace('https', 'http', $url);
return $url;
}, 10, 4);
This should adjust the font URL and replace https with http.
Best regards,
Ismael