Custom Fonts – Host Your Fonts Locally

Descripción

HOST FONTS, IMPROVE WEBSITE SPEED, AND ELIMINATE PRIVACY CONCERNS

★★★★★

IMPROVED SPEED AND PERFORMANCE 🚀

Custom Fonts enables you to upload your own custom fonts or choose from a vast collection of Google Fonts, all hosted directly on your own web server.

By hosting fonts locally, you can significantly improve your website’s performance. As the fonts load directly from your server, it reduces external requests, significantly reducing page load times.

Try it out on a free dummy site

UPLOAD YOUR CUSTOM FONTS OR CHOOSE FROM GOOGLE FONTS 🎨

With Custom Fonts, you have the freedom to customize your website typography to match your unique brand identity!

You can easily upload your own custom font files, such as .ttf or .otf, and use them throughout your website. Or, you can choose from a rich library of Google Fonts and host them locally on your server, ensuring full control over their use.

UPLOAD MULTIPLE FONT VARIANTS 🆒

You have the flexibility to upload any number of font variants to suit your design needs. Whether it’s different weights, styles, or character sets, easily manage and customize the necessary font variants. Personalize your typography to perfection and create a unique visual identity for your website.

ENHANCED PRIVACY AND GDPR COMPLIANCE 🛡️

Privacy is a top priority, especially in light of data protection regulations like GDPR. By using Custom Fonts, you can self-host your fonts, eliminating any privacy concerns associated with external font services. Take full control over the fonts you use on your website and ensure compliance with privacy regulations.

FULL SITE EDITING THEME SUPPORT AND EASY INTEGRATION 🎉

Custom Fonts seamlessly integrates with WordPress full site editing themes, allowing you to effortlessly choose and customize fonts across your entire website. Say goodbye to limitations and enjoy the freedom to create a consistent and visually appealing typography experience for visitors.

BEAUTIFUL AND USER-FRIENDLY INTERFACE MADE WITH REACT JS 💻

We take pride in providing an elegant and intuitive user interface for Custom Fonts. Built with React JS, our interface offers a seamless experience, making it easy to upload and manage custom fonts, select from Google Fonts, and customize typography settings to suit your needs.

COMPLETELY FREE, NO UPSELLS OR HIDDEN COSTS 🆓

Custom Fonts is completely free, with no upsells or hidden costs. We believe in empowering website owners with essential tools without nickel-and-diming. Enjoy full access to all the features and functionality of Custom Fonts.

WHO CAN BENEFIT FROM CUSTOM FONTS?

  1. Web designers and developers: You can easily enhance the typography and overall design of your projects, making them stand out from the crowd.

  2. eCommerce store owners: Custom fonts can enhance your brand identity and provide a distinctive visual style for product descriptions, banners, and more. Hosting fonts locally with Custom Fonts improves website performance, benefiting you and your consumers.

  3. Bloggers and content creators: Make your content truly pop. Stand out from the crowd and captivate your audience with Custom Fonts.

  4. SEO experts: You can now boost page speed by hosting fonts locally with Custom Fonts. Fewer external requests means faster loading times! Plus, you ensure compliance with privacy regulations.

Custom Fonts caters to anyone who values the customization of typography, performance optimization, privacy control, and compliance with regulations.

If you want to take control of your website’s typography and enhance its overall appearance, Custom Fonts is the plugin for you!

SOME OF THE SUPPORTED WORDPRESS THEMES:

SOME OF THE SUPPORTED WORDPRESS PLUGINS:

  • Spectra Page Builder
  • Elementor Page Builder

Branding Guidelines

When mentioning Custom Fonts, please use the following format:

  • Custom Fonts [correct]
  • CustomFonts [incorrect]
  • Custom fonts [incorrect]
  • CustomFont [incorrect]
  • Customfont [incorrect]

Our Other Products:

  • Astra – The most popular WordPress theme that perfectly integrates with Custom Fonts.
  • Spectra – A visual website builder built with WordPress’ native block editor.
  • Ultimate Addons for Elementor – The best addons to extend Elementor’s capabilities.
  • Schema Pro – All-in-one schema markup plugin that offers complete functionality and easy configuration.
  • ProjectHuddle – Lets you collect sticky note-style feedback on page designs and web projects.

Other partnered products:

  • CartFlows – One-click sales funnel builder for WordPress.
  • Presto Player – Best video player plugin for WordPress.
  • SureCart – A powerful eCommerce platform designed to grow your business by effortlessly selling online.
  • SureMembers – Fastest and easiest way to protect content on your website and build memberships.
  • SureTriggers – Connects your favorite tools so you can automate workflows and streamline your business processes.
  • SureWriter – AI writing tool to make your web design journey faster.

Capturas

  • Add a new font through the Custom Fonts page.
  • Configure a local font by adding its title and font files.
  • Upload and select a local font file.
  • Preview the locally uploaded font.
  • Set up a Google font from an extensive collection available.
  • View a list of all uploaded fonts.

Instalación

  1. Upload the ‘custom-fonts’ folder to the ‘/wp-content/plugins/’ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Preguntas frecuentes

Can I upload my own custom font files?

Absolutely! Custom Fonts allows you to upload your own custom font files, in .ttf or .otf formats and use them on your website. Simply navigate to the plugin settings, upload your font files, and customize your typography using your custom fonts.

Can I use Google Fonts with Custom Fonts?

Yes, Custom Fonts seamlessly integrates with Google Fonts. Browse from an extensive collection of Google fonts and host them locally on your server. Select the perfect font to enhance the visual appeal of your website.

Does Custom Fonts help improve website performance?

Yes! By hosting fonts locally, Custom Fonts can improve your website’s performance. Fonts are loaded directly from your server, reducing external requests and enhancing overall page loading times.

Is Custom Fonts compliant with privacy regulations like GDPR?

Absolutely! Custom Fonts allows you to host fonts locally. This ensures enhanced privacy and compliance with privacy regulations like GDPR. By hosting your own fonts, you eliminate any privacy concerns associated with external font services.

Does Custom Fonts support WordPress full site editing themes?

Yes, Custom Fonts seamlessly integrates with WordPress full site editing themes!

Is the Custom Fonts Plugin free to use?

Yes, Custom Fonts is completely free to use, without any limitation.

Reseñas

31 de julio de 2024
Italics are not working. As soon as they are added as a font variant all variants are shown as italics. Thus you need to set-up the italics as a separate font which makes it really cumbersome to use.This problem has been around for over a year and it seems nothing has been done to fix it. Not impressed. 🙁
27 de junio de 2024 1 respuesta
There are probably a dozen of fonts plugins out there with many if not most of them still use Customizer interface. Moving forward with the future of Wordpress, you want the plugin to be compatible with Full Site Editing framework, and this plugin works well with the new framework.
13 de mayo de 2024 2 respuestas
in lines 194 of following path, there was a problem … In the provided code snippet, the issue was occurring in the remove_custom_font_google_url method. This method is responsible for removing custom fonts from the Google fonts URL array. The problem was with the line: php code: if ( $value[‘font_fallback’] ) { Here, the code was trying to access the font_fallback index of $value directly without ensuring that $value[‘font_fallback’] exists and is not null. This could lead to issues if $value[‘font_fallback’] is not set. To fix this, I made the following changes: I added a check to see if $value[‘font_fallback’] exists and is not null using isset(): php code: if ( isset( $value[‘font_fallback’] ) && $value[‘font_fallback’] ) { If $value[‘font_fallback’] exists and is not null, then $value[‘font_fallback’] is appended to $font_key. Otherwise, $font_key remains the same. By adding this check, we ensure that the code doesn’t try to access an undefined index, which could lead to the “Trying to access array offset on value of type bool” warning. Instead, it first checks if the index exists before attempting to access it.
30 de abril de 2024 1 respuesta
The last plugin I tried before this had a paywall to upload more than one weight variation of one font. Unbelievable. Considering most good fonts have 8+ variations, I thought other plugins were probably running the same scheme BUT this plugin literally allows you to upload not just as many variations as you want but several different families as well. In the FREE version!! This plugin is a godsend
20 de abril de 2024 1 respuesta
Thanks for making the plugin, integrated seamlessly for bold/regular fonts. If I make font styles/add the Woff2 italic assets as italics within the same font family as regular and bold fonts in the control panel, Elementor gravitates to the italic font and makes everything italic regardless if default/regular is selected in the style dropdown of Elementor editor. For now I have to make separate fonts for italic and regular versions and ignore the italic/regular selector in Elementor Page builder. Or probably forever because I see a bad review regarding this from 9 months time ago The good news is that if Italic is selected for the base font already set throughout the site in Elementor Editor, Elementor attempts to augment the Italic, just not with the assets provided since those have to be a separate font within this plugins control panel in reality.
Leer todas las 60 reseñas

Colaboradores y desarrolladores

Este software es de código abierto. Las siguientes personas han contribuido a este plugin.

Colaboradores

“Custom Fonts – Host Your Fonts Locally” ha sido traducido a 15 idiomas locales. Gracias a los traductores por sus contribuciones.

Traduce “Custom Fonts – Host Your Fonts Locally” a tu idioma.

¿Interesado en el desarrollo?

Revisa el código, echa un vistazo al repositorio SVN o suscríbete al registro de desarrollo por RSS.

Registro de cambios

2.1.6

  • Improvement: Few string from admin dashboard app doesn’t have text domain support. (Props – https://github.com/pedro-mendonca)

2.1.5

  • Improved codebase for improved security.

2.1.4

  • Improvement: Compatibility with WordPress 6.5.

2.1.3

  • Fix: Resolved issue with local fonts not rendering properly on the frontend.

2.1.2

  • Fix: Resolve PHP Warning ‘Cannot modify header information’ during post content editing in Gutenberg.
  • Fix: Thrive product created layout’s changes not saved due to Custom fonts plugin conflicts.

2.1.1

  • Improvement: Compatibility with WordPress 6.4.

2.1.0

  • New: Introducing new ‘Fonts Preload’ option, to preload custom fonts.
  • New: Introducing an option to update existing font name.
  • Improvement: Autosave functionality for adding, updating fonts.
  • Improvement: Code refactored and optimization.
  • Fix: Custom local fonts not working in FSE site editors.

2.0.2

  • Improvement: Added multiple font file selection for single font weight.
  • Fix: Frontend fonts messed up after 2.0 update.
  • Fix: Pre added multiple font files for single weight were missed after 2.0.
  • Fix: Fonts are not listed under Beaver Builder editor typography settings.
  • Fix: Text domains load correctly for JavaScript translations. (Props – https://github.com/pedro-mendonca)
  • Fix: Used proper sprintf in hard concatenated string for translation. (Props – https://github.com/pedro-mendonca)
  • Fix: Added translation for hardcoded ‘Italic’ suffix. (Props – https://github.com/pedro-mendonca)

2.0.1

  • Fix: Edit Custom font screen blanks on expanding font from admin list view.
  • Fix: PHP error undefined index ‘font_weight’ on the frontend.

2.0.0

  • New: Redesigned the entire admin area with a better user experience.
  • New: Google fonts support in Custom Fonts plugin now.
  • Improvement: Custom font supports in FSE editor.

1.3.7

  • Fix: Custom font’s CSS not applying in responsive previews of WordPress block editor.

1.3.6

  • Improvement: Compatibility with Spectra editor.

1.3.5

  • Fix: Inherit font option not working as expected for some customizer options.

1.3.4

  • Fix: Custom fonts are not loading on Astra customizer and Elementor typography settings after Elementor Pro v3.6.0.

1.3.3

  • Corrección: Las cabeceras ya mandaban una advertencia en el personalizador.

1.3.2

  • Corrección: Conflicto de JS con el plugin Jetpack en el administrador.

1.3.1

  • Corrección: La fuente no se mostraba adecuadamente cuando múltiples archivos de formato de fuente se agregaban a una fuente individual.

1.3.0

  • Nuevo: Se agregan múltiples gruesos de fuente a las fuentes personalizadas.

1.2.6

  • Mejora: Compatibilidad con PHP 8.0.

1.2.5

  • Corrección: La visualización de la fuente no se agregaba apropiadamente.

1.2.4

  • Mejora: endureció la seguridad del complemento

1.2.3

  • Corrección: se corrigió la compatibilidad con otros plugins con respecto a la notificación en la administración.

1.2.2

  • Nuevo: los usuarios ahora pueden compartir datos de uso no personales para ayudarnos a probar y desarrollar mejores productos. ( https://store.brainstormforce.com/usage-tracking/?utm_source=wp_dashboard&utm_medium=general_settings&utm_campaign=usage_tracking )

1.2.1

  • Mejora: endureció la seguridad del complemento
  • Mejora: compatibilidad con las últimas reglas de WordPress PHP_CodeSniffer

1.2.0

  • Mejora: visualización del menú después de el menú de opciones de Astra.

1.1.0

  • Nuevo: Opción para seleccionar la propiedad de visualización de fuente.

1.0.8

  • Nuevo: ahora también puede cargar fuentes otf.
  • Soluciónado: las fuentes ttf no se cargan en la biblioteca multimedia de WordPress.

1.0.7

  • Soluciónado: las fuentes personalizadas que cargan el editor de bloques rompen el estilo del editor.

1.0.6

  • Mejora: poner en cola las fuentes personalizadas en el Editor de bloques para obtener una vista previa correcta de las fuentes personalizadas.

1.0.5

  • Soluciónado: error de JavaScript en el navegador Firefox que no permite cargar ninguna fuente.

1.0.4

  • Nuevo: compatibilidad añadida con Beaver Builder Theme, Beaver Builder Plugin y Elementor.

1.0.3

  • Soluciónado: cuando se cargan dos fuentes personalizadas en un sitio, solo una de las fuentes se pondrá en cola.

1.0.2

  • Se agregó compatibilidad con White Label desde el complemento Astra Pro .

1.0.1

  • Se mejoró el diseño de la IU de administrador.
  • Cambió el nombre del complemento para que sea Fuentes personalizadas en lugar de Fuentes personalizadas BSF.

1.0.0

  • Versión inicial.