@DeoThemes
Thanks for the answer.
Here is the code from the parent theme functions.php file
[code]//Main Styles
function twice_register_styles() {
// Register
/* Load fontawesome /
wp_enqueue_style(‘font-awesome’, get_theme_file_uri() . ‘/css/font-awesome.css’);
/ Load animate min /
wp_enqueue_style(‘animation’, get_theme_file_uri() . ‘/css/animate.min.css’, ‘1.0.0’);
/ Load bootstrap /
wp_enqueue_style(‘bootstrap’, get_theme_file_uri() . ‘/css/bootstrap.css’);
/ Load theme navigation CSS /
wp_enqueue_style(“navigation”, get_theme_file_uri() . ‘/css/navigation.css’);
/ Load portfolio styles CSS /
wp_enqueue_style(“portfolio”, get_theme_file_uri() . ‘/css/portfolio.css’);
/ Load font icons /
wp_enqueue_style(“icons”, get_theme_file_uri() . “/css/icons.css”);
/ Load shortcodes styles */
wp_enqueue_style(“shortcodes”, get_theme_file_uri() . ‘/css/shortcodes.css’);
}
add_action(‘wp_enqueue_scripts’, ‘twice_register_styles’);
[/code]
Scripts code
function twice_register_scripts() {
// Register scripts
// Load jquery UI
wp_enqueue_script('jqueryui', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js");
// Load jquery easing
wp_enqueue_script('jqueryeasing', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js");
// Load google maps
wp_enqueue_script('googlemaps', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://maps.googleapis.com/maps/api/js?key=AIzaSyBRCgZMCcdX8MRtcwXtO82MagwRvWBb3RY");
/* Media element & player script */
wp_enqueue_script('html5media', get_theme_file_uri() . '/js/mediaelement-and-player.min.js', array( 'jquery' ), '1.0', true);
/* Masonry script */
wp_enqueue_script('masonry', get_theme_file_uri() . '/js/jquery.masonry.min.js', array( 'jquery' ), '1.0', true);
/* ImagesLoaded script */
wp_enqueue_script('imagesloaded', get_theme_file_uri() . '/js/imagesloaded.js', array( 'jquery' ), '1.0', true);
/* Bootstrap script */
wp_enqueue_script('bootstrapjs', get_theme_file_uri() . '/js/bootstrap.min.js', array( 'jquery' ), '1.0', true);
/* Fake element scroll */
wp_enqueue_script('infinityscroll', get_theme_file_uri() . '/js/jquery.infinitescroll.min.js', array( 'jquery' ), '1.0', true);
Still not sure where could be an error.
Cheers.