Using local fonts only
-
Hi,
Kadence Blocks are really awesome! Great work!
For my projects I like to use local webfonts. I have these local fonts registered in my theme and I’m able to use them in the Customizer. How can I get these local fonts to be displayed and used by the Kadence blocks? Is it possible to completely remove all Google fonts and only display the locally added fonts?Thanks for your help in advance!
Kind regards
Sebastian
-
Hey,
Which theme are you using? Are the fonts loading in the Gutenberg editor for things like headings?Ben
Hi Ben, thanks for the quick reply!
I’m using GeneratePress as my base theme with the GP Premium addon.
I registered my local fonts and I can use them inside the customizer. With the font settings provided by the GP Premium plugin I can set all my default font settings. These settings are also reflected in the Gutenberg editor via editor-styles.
So far so good. Now, I’m looking for a way to be able to have my local fonts also listed in the Kadence Blocks Font Family Settings. I want to be able to set my local fonts as the default font families, to than be able to sometimes overwrite the font settings made in my theme font settings. In a second step I would like to completely remove all Google Fonts, so only local fonts are available in all dropdowns.It would be great if you could help me to accomplish that!
You can use a javascript filter to make this happen.
For example if you load a js file in a child theme on the enqueue_block_editor_assets action.
You can include this in your javascript file:
const { addFilter, } = wp.hooks; function replace_kadence_fonts( options ) { const custom_fonts = [ { type: 'group', label: 'Custom Fonts', options: [ { label: 'Custom', value: 'custom', google: false }, ], }, ]; return custom_fonts; } addFilter( 'kadence.typography_options', 'example/replace_fonts', replace_kadence_fonts );
Thanks for the input!
Including this script will return the following error:
Uncaught TypeError: Cannot destructure property ‘addFilter’ of ‘undefined’ or ‘null’.
at editor-script.js:3I’m sure I’m doing something wrong here. I’m not that deep into JS I must admit.
Hey,
Can you send me all of the code you are using? I’ve tested the above code and it works for meBen
Hi Ben,
in my child themes functions.php I’m adding my editor script like this:
// WP - ADD EDITOR SCRIPTS function ic7_add_editor_scripts() { wp_enqueue_script( 'editor-script', get_stylesheet_directory_uri() . '/_/js/editor-script.js'); } add_action( 'enqueue_block_editor_assets', 'ic7_add_editor_scripts' );
The editor script looks like this:
// REPLACE KADENCE FONTS const { addFilter, } = wp.hooks; function replace_kadence_fonts( options ) { const custom_fonts = [ { type: 'group', label: 'Custom Fonts', options: [ { label: 'Custom', value: 'custom', google: false }, ], }, ]; return custom_fonts; } addFilter( 'kadence.typography_options', 'example/replace_fonts', replace_kadence_fonts );
When you wp_enqueue_script make sure to add the block dependencies, something like this:
'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor', 'wp-api', 'wp-edit-post'
function ic7_add_editor_scripts() { wp_enqueue_script( 'editor-script', get_stylesheet_directory_uri() . '/_/js/editor-script.js', array( 'wp-blocks', 'wp-i18n', 'wp-element', 'wp-editor', 'wp-api', 'wp-edit-post' ), '1.0', true ); } add_action( 'enqueue_block_editor_assets', 'ic7_add_editor_scripts' );
Awesome! Now it’s working!
Thank you Ben for your great support!Is there a roadmap for Kadence Blocks (Pro)?
I’m thinking about getting the Pro Blocks, or even the full membership.
What is there to expect in the near/far future?Thanks again
SebastianHey, Pro just got a new Advanced Slider Block (gonna put a demo page up for that soon) next are two new gallery layout options (might come out tomorrow), and Kadence Blocks is getting an advanced form block really soon(like next week), pro will extend it with options to integrate with 3rd party services like MailChimp, Convertkit, etc.
Tons of prebuilt site templates and sections are coming soon after all that. As well as pricing table block and a few others.Kadence Custom Font plugin already supports Gutenberg and Kadence Blocks so fonts added through it already get loaded into the editor and on the front end.
Lots of good stuff coming ?? happy to hear any feature requests as well.
BenHi Ben,
thanks for the info. Sounds great!
One feature that is missing for the Gutenberg Block Editor in general is the ability to restrict block editing for certain user roles, or even specific users. Meaning being able to lock blocks for specific users, so they can only edit the content inside these blocks, but can’t change other block settings, or can’t add or move blocks inside the existing template. For client work this is absolutely essential I think.
Is something like this planed for the Kadence Blocks or do you know if something like this is planed for the Gutenberg Block Editor in general?
Is there a good workaround to do this at the moment?Thanks for you feedback in advance!
Best regards
SebastianHey,
If you click on Kadence Icon in the top right corner of the editor then click on the eye icon next to a block you can set visibility controls for block settings.For example with the tabs block, you can only allow admin users to be able to change colors, padding, etc.
That would give you part of what you want. In terms of locking layouts from being moveable, that is not something I’ve looked into. I’ll have to look around for how that could work as an add on to Kadence Blocks.
Ben
Hi Ben,
the visibility controls for block settings are really good! Thank you!
Locking layouts would be a perfect add on.
This already can already be achieved with gutenberg block templates.
Do you know if it is, or will be possible to choose between block templates.
At the moment one block template can be associated with a post type.
It would be great if multiple premade block templates could be associated, with the user being able to choose the desired template before entering content.Best regards
SebastianHey within a theme you can certainly setup templates through the built-in Gutenberg way and there are “Planned additions:” that would include setting up templates based on the template file.
https://developer.www.ads-software.com/block-editor/developers/block-api/block-templates/
- The topic ‘Using local fonts only’ is closed to new replies.