Home Forums WordPress Themes – Premium Flat Responsive Font Awesome Version

Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #54095
    Ellen
    Participant

    Will you be updating the version of Font Awesome in Flat Responsive soon?

    #54103
    Bidur
    Moderator

    Hello Ellen,

    Thanks for contacting us!

    We’ll look after it and hopefully update in our next update soon.

    Best Regards,
    Bidur

    #54113
    Ellen
    Participant

    Hello Bidur,

    Thanks for getting back to me. Is there a way to add the new icons to the theme? I really need to use some of them.

    Ellen

    #54148
    Bidur
    Moderator

    Hello Ellen,

    We’ll update and let you know.

    Thanks!

    #57663
    Ellen
    Participant

    Hi Bidur,

    I noticed some of the new fonts in FontAwesome still aren’t in the latest version of this and some of your other themes. Will this be updated soon? If not, are you offering a fix in the meantime?

    Ellen

    #57689
    Bidur
    Moderator

    Hello Ellen,
    You can manually update font-awesome icons.
    1. Go to font-awesome
    2. You can find Downlaod font awesome free button, get the download.
    3. Use your child theme to create a css directory as in parent theme and add fontawesome.min.css file from the downloaded package inside it.
    4. Now you need to enqueue it from your child theme; open functions.php file inside flat-responsive child theme
    5. For instance; Take reference from the function as follows;

    <?php 
    
     function flat_responsive_child_enqueue_scripts_styles() {
        wp_enqueue_style( 'parent-theme-css', get_template_directory_uri() . '/style.css' );
        wp_enqueue_style('font-awesome1', get_stylesheet_directory_uri(). '/css/fontawesome.min.css');
    }
      add_action( 'wp_enqueue_scripts', 'flat_responsive_child_enqueue_scripts_styles');
     
      function parent_dequeue_fontawesome(){
         wp_dequeue_style('font-awesome');
    }  
      add_action( 'wp_enqueue_scripts', 'parent_dequeue_fontawesome',11); 

    Let us know.
    Thanks!

    • This reply was modified 5 years, 5 months ago by Bidur.
Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.