Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1377360
    Riri
    Guest

    Hello, may I ask about this theme? I’m looking for WordPress theme support to install another font. Is it this theme support installing another font except google font?

    #1377362

    Hey Riri,

    Thank you for the inquiry.

    Yes, you can use custom fonts by using plugins such as Use Any Font. The plugin allows you to add custom fonts to your website without requiring any coding knowledge.

    Best regards,
    Ismael

    #1377364
    Riri
    Guest

    How about a link on the logo header? IS it possible to change the link to another link?

    #1377365

    Hi,

    Yes, you can add the following filter in the functions.php file to adjust the link of the logo.

    function av_change_logo_link($link){
        $link = "https://site.com/page"; // change this URL
        return $link; 
    }
    add_filter('avf_logo_link','av_change_logo_link');
    

    Best regards,
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.