Home Forums Basel support forum Custom Font

Custom Font

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #129998

    konifez
    Participant

    Hello everybody, last time we asked a question about how to upload a custom font. That’s worked out by now. And we were able to set the typography to the new font. However, in the meantime the dropdown menu to select the font disappeared and we are not able to select a font any more, see attached screenshot.
    How could we solve this problem?
    Thanks and best regards,
    Florian

    Attachments:
    You must be logged in to view attached files.
    #130004

    Artem Temos
    Keymaster

    Hello,

    Could you please disable all plugins that are not related to our theme and provide us your admin access so we can check it?

    Thank you in advance

    #133176

    konifez
    Participant

    Hello,

    which is the best possibility to give you admin access? And do we have to disable the plugins only for changing the font or in general?

    Thanks in advance,
    Florian

    #133178

    Artem Temos
    Keymaster

    You can send the information via the private content field. It would be better to disable all external plugins so we can be sure that there are no conflicts.

    #133294

    konifez
    Participant

    Please find the access data in the field below.
    Thank you!

    #133322

    Artem Temos
    Keymaster

    Please, disable all external plugins first so we can check.
    Also, update the theme to the latest version.

    We see that you have some problems on the server and it seems that it blocks requests to some required resources https://gyazo.com/e38f66b41529575e4001641085409e5f
    Ask your hosting provider to investigate this problem too.

    #136860

    konifez
    Participant

    We disabled all external plugins and updated the theme. Could you check if it is possible to change the font now?

    #136885

    Artem Temos
    Keymaster

    Try to add the following PHP code snippet to the child theme functions.php file

    function select2_enqueue() {
        wp_enqueue_script(
            'select2-js',
            '//cdn.jsdelivr.net/select2/3.5.2/select2.min.js',
            array(),
            '3.5.2',
            true
        );
        wp_enqueue_style(
            'select2-css',
            '//cdn.jsdelivr.net/select2/3.5.2/select2.css',
            array(),
            '3.5.2',
            'all'
        );
    }
    add_action( 'admin_init', 'select2_enqueue' );
Viewing 8 posts - 1 through 8 (of 8 total)