Function Reference: geodir_font_awesome_rating_css

Summary

Adds the style for the font awesome rating icons.

Package

GeoDirectory

Change Log

Since: 1.5.7

Source File

geodir_font_awesome_rating_css() is located in geodirectory-functions/template_functions.php [Line: 672]

Source Code

function geodir_font_awesome_rating_css() {
	// Font awesome rating style
	if (get_option('geodir_reviewrating_enable_font_awesome') == '1') {
		$full_color = get_option('geodir_reviewrating_fa_full_rating_color', '#757575');
		if ($full_color != '#757575') {
			echo '';
		}
	}
}