Bonjour,
Ma configuration WP actuelle
- Version de PHP/MySQL :
- Thème utilisé :
- Extensions en place :
- Nom de l’hébergeur :
- Adresse du site : En local (MAMP)
Problème(s) rencontré(s) :
Bonjour tout le monde et bonne année ! 🙂
J’ai installer un thème woocommerce en local et créé un thème enfant (j’utilise le plugin « Child Theme Configurator ») et j’ai un soucis d’affichage CSS dans le menu.
J’ai apparemment le menu de base de Woocommerce et non celui du thème parent (MAGNIUM sur Themeforest)
J’ai bien suivi les indications pour le thème enfant c’est à dire :
- Copy img/, inc/plugins/ folders with all files inside to your child theme folder
- Create cache/ folder inside child theme folder and check that server can write to this directory
- Go to Child theme admin panel and Save all changes to write new cache
Voici pour info le code de mon fichier function.php qui est dans le thème enfant
…
// Exit if accessed directly
if ( !defined( 'ABSPATH' ) ) exit;
// BEGIN CTC ENQUEUE PLUGIN ACTION
// AUTO GENERATED - Do not modify or remove comment markers above or below
if ( !function_exists( 'chld_thm_cfg_plugin_css' ) ):
function chld_thm_cfg_plugin_css() {
wp_enqueue_style( 'chld_thm_cfg_pro', trailingslashit( get_stylesheet_directory_uri() ) . 'ctc-plugins.css' );
}
endif;
// using high priority so plugin custom styles load last.
add_action( 'wp_print_styles', 'chld_thm_cfg_plugin_css', 9999 );
// END CTC ENQUEUE PLUGIN ACTION
// BEGIN ENQUEUE PARENT ACTION
// AUTO GENERATED - Do not modify or remove comment markers above or below:
if ( !function_exists( 'chld_thm_cfg_parent_css' ) ):
function chld_thm_cfg_parent_css() {
wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css', array( ) );
}
endif;
add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css', 10 );
if ( !function_exists( 'child_theme_configurator_css' ) ):
function child_theme_configurator_css() {
wp_enqueue_style( 'chld_thm_cfg_child', trailingslashit( get_stylesheet_directory_uri() ) . 'style.css', array( 'chld_thm_cfg_parent' ) );
}
endif;
add_action( 'wp_enqueue_scripts', 'child_theme_configurator_css' );
// END ENQUEUE PARENT ACTION
Quelqu’un aurait une idée ? :/
Bonne soirée !
Stéphane : )
Fichiers joints :
Vous devez être
connecté pour voir les fichiers joints.