Thank you for getting back to me.
I am using the Social Profiles field. I noticed a code change in the class-redux-extension-social-profiles.php file. Previously it was like this:
public function enqueue_styles() {
wp_enqueue_script(
'font-awesome-kit',
'https://kit.fontawesome.com/a29229187e.js',
array(),
time(),
true
);
// Field CSS.
wp_enqueue_style(
'redux-field-social-profiles-frontend',
$this->extension_url . 'social_profiles/css/field_social_profiles_frontend.css',
array(),
self::$version
);
}
And now in the latest version of Redux it’s like:
public function enqueue_styles() {
// Field CSS.
wp_enqueue_style(
'redux-field-social-profiles-frontend',
$this->extension_url . 'social_profiles/css/field_social_profiles_frontend.css',
array(),
self::$version
);
}
so this snippet is missing and the icons don’t show up:
wp_enqueue_script(
‘font-awesome-kit’,
‘https://kit.fontawesome.com/a29229187e.js’,
array(),
time(),
true
);
Is there a way to make Redux enqueue font awesome icons even when the Icon Select or Social Profiles fields are not in use?