Font Awesome

Adding Font Awesome

Hi, Not a support request but just want to mention a possible improvement in the docs. https://docs.generatepress.com/article/font-awesome/ suggests hooking to wp_head. While it works, wp_enqueue_scripts is the recommended hook to use. As far as I know, this is a better approach: add_action( 'wp_enqueue_scripts', 'custom_load_font_awesome' ); /** * Enqueue Font Awesome. */ function custom_load_font_awesome() { wp_enqueue_script( … Read more

Icons disappeared

Hello, Since I disabled the Load essential icons funtions my GP icons have disappeared (i.e. menu) and now I cannot go back (the option has disappeared too). I undersand that GP does not use font aweseome anymore, but I thought the new icons would be loaded instead. Any idea how to fix it? Thank you … Read more

Load Essential Icon Disappeared

Load Essential Icon is Disappear from General Tab Image : Right now working with this Php : add_action( ‘wp_head’, ‘tu_font_awesome_css’ ); function tu_font_awesome_css() { echo ‘<link rel=”stylesheet” href=”path/to/font-awesome/css/font-awesome.min.css”>’; }

font awesome in secondary menu

Hello everybody when I writing the code in CSS Aditional i.fa.fa-twitter-square { color: #00ace2; font-size:20px!important; margin-right:500px; } no change in margin ???

Unable to show font awesome icons

Hi, Can you please guide me how can I get the font awesome work on my site, I have tried this several times: https://docs.generatepress.com/article/adding-icons-to-menu-items/ but without any luck, all I get is blank.

Font Awesome icon misplacement

So as the title says, I am having a weird problem with font awesome icons. Here is my website https://racmma.com ; the first 3 icons that are on a colored circle container have some weird spacing on top of them, already tried to use the inspector to see what is that but no information about … Read more

Proceed to checkout button: missing Font Awesome? GP Premium 1.6.2

Hello, on the cart page (localhost), the button ‘Proceed to checkout’, it shows the text and at the end of it a square, as if it did not find the required image. I have seen that in: wp-content\plugins\gp-premium\woocommerce\functions\css\woocommerce.css has the following rule: a.button.wc-forward: after {      content: “\ e901”;     .    . . } … Read more

Font Awesome renderings different across site

I get one type of rendering on home page punycode.io And another type of rendering on sub page punycode.io/api/ I prefer the rendering on the home page. How do I propage it on the rest of the site?

Font Awesome icons not displaying in GPP 1.6rc1

I’m having trouble getting Font Awesome icons to display within Sections. It’s working just fine in the Footer but not in Sections. Screenshot of front end: https://cl.ly/1s3M2L1O1C3r Screenshot of code used: https://cl.ly/0M3C190t2b02 Any thoughts on what might be wrong here?

Font Awesome Icons not showing up

Hi there, I would like to use the Font Awesome Icons with my GP theme. Unfortunately it’s not working… When I add something like the following to a post or page it won’t show up. <span style="color: #0000ff;"><i class="fas fa-adjust"></i></span> What am I doing wrong?