Icons not all showing

I’m using the Flavor theme (http://www.industrialthemes.com/flavor/) with rtmedia pro. Not all of my icons are showing up on the site with rtmedia activated – this includes icons from my theme and icons from the rtmedia plugin. It is definitely a conflict between rtmedia and the Flavor theme (I’ve run through all of the tests). I believe both are calling for an icon class, but rtmedia’s is defined as ‘FontAwesome’ font and the theme’s is defined as ‘Icon’ font. Is it possible for you to verify this? If that’s the problem, is there a way for me to fix it? I am a noob with wordpress, so I would greatly appreciate any help! Thanks in advance!!

Hi @rroglitz,

can you give url of your site, so that we can figure it out what is the cause.

It’s on AWS and is just beginning to be developed, but here is the link: http://ec2-54-224-32-30.compute-1.amazonaws.com/

It’s on AWS and is just beginning to be developed, but here is the link: http://ec2-54-224-32-30.compute-1.amazonaws.com/

Is anyone able to help me with this?

Hi @rroglitz,
We are trying to figure out a suitable way for these kinds of conflicts to not happen. For now what you could do is dequeue the FontAwesome style by placing the following code in your theme’s functions.php

 add_action('wp_enqueue_scripts', 'dequeue_scripts_styles', 1000);  
function dequeue_scripts_styles() {  
    wp_dequeue_style("rtmedia-font-awesome");  
} 

Although you wouldn’t be able to see any icons that rtMedia uses. Other way would be to override all the styles in your theme’s css.

Most probably this should be fixed in the next release. Also try contacting the theme developers and see what they have to say.

Thank you for your help @Ritesh Patel. I will try this.

This restored the icons in my theme; however, it then removed the option of Create Album and Upload Media for rtmedia. Any other ideas??

Hi @rroglitz,

As already mentioned in my previous reply, this will be solved in the next release which is expected to release in about a weeks time.

What you could do now is to try and find out the classes being used for the rtMedia icons and add those classes with proper specificity in your themes css.

That’s awesome to hear! Thanks again, Ritesh, for all of your help!