NO BUG: Is Bricks blocking FontAwesome (Pro)?

I have a client with an external bookings system (Booqable) for rentals. It is a plugin that I can call using an shortcode.

The icons are not visible, see Image. Booqable-developer tells me that Bricks is blocking the FontAwesome (Pro).

I can’t figure out how to find a solution for this. I have disabled all other plugins but nothing helps.

It’s because they’re using font awesome pro, and the Bricks icons you’re using is loading font awesome free. (and they use the same classes)

If the icons are the same in pro, you could just override the icons styles with…

.fa, .fa-regular, .far {
    font-family: Font Awesome\ 6 Pro;
}

Then all the font awesome icons on the site will pull from the pro version.

2 Likes

Many thanks!!! Its works.

As always: Thanks for helping out, @wplit!