Loading Icons mind font when using shortcodes in footer
Add to Child Theme "functions.php "file :
<?php add_action( 'wp_enqueue_scripts', 'salient_child_enqueue_styles'); function salient_child_enqueue_styles() { wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css', array('font-awesome')); if ( is_rtl() ) wp_enqueue_style( 'salient-rtl', get_template_directory_uri(). '/rtl.css', array(), '1', 'screen' ); /* load iconsmind library on every page to make it accessible for footer button icon */ wp_register_style('iconsmind', get_template_directory_uri() . '/css/iconsmind.css', '', '7.6'); wp_enqueue_style('iconsmind'); } ?>