/** * Top Store functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package ThemeHunk * @subpackage Top Store * @since 1.0.0 */ /** * Theme functions and definitions */ if ( ! function_exists( 'top_store_setup' ) ) : define( 'TOP_STORE_THEME_VERSION','1.6.2'); define( 'TOP_STORE_THEME_DIR', get_template_directory() . '/' ); define( 'TOP_STORE_THEME_URI', get_template_directory_uri() . '/' ); define( 'TOP_STORE_THEME_SETTINGS', 'top-store-settings' ); /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_top_store_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function top_store_setup(){ /* * Make theme available for translation. */ load_theme_textdomain( 'top-store', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_theme_support( 'woocommerce' ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); // Add support for editor styles. add_theme_support( 'editor-styles' ); // Enqueue editor styles. add_editor_style( 'style-editor.css' ); add_editor_style( 'editor.css' ); // Add support for responsive embedded content. add_theme_support( 'responsive-embeds' ); add_theme_support( 'custom-spacing' ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Remove theme support for widget block editor // remove_theme_support( 'widgets-block-editor' ); /** * Add support for core custom logo. */ add_theme_support( 'custom-logo', array( 'height' => 250, 'width' => 250, 'flex-width' => true, 'flex-height' => true, ) ); // Add support for Custom Header. add_theme_support( 'custom-header', apply_filters( 'top_store_custom_header_args', array( 'default-image' => '', 'flex-height' => true, 'header-text' => false, 'video' => false, ) ) ); // Recommend plugins add_theme_support( 'recommend-plugins', array( 'hunk-companion' => array( 'name' => esc_html__( 'Hunk Companion (Highly Recommended)', 'top-store' ), 'img' => 'icon-128x128.png', 'active_filename' => 'hunk-companion/hunk-companion.php', ), 'vayu-blocks' => array( 'name' => esc_html__( 'Vayu blocks For Gutenberg', 'top-store' ), 'img' => 'icon-128x128.png', 'active_filename' => 'vayu-blocks/vayu-blocks.php', ), 'th-advance-product-search' => array( 'name' => esc_html__( 'TH Advance Product Search', 'top-store' ), 'img' => 'icon-128x128.gif', 'active_filename' => 'th-advance-product-search/th-advance-product-search.php', ), 'th-all-in-one-woo-cart' => array( 'name' => esc_html__( 'Th All In One Woo Cart', 'top-store' ), 'img' => 'icon-128x128.gif', 'active_filename' => 'th-all-in-one-woo-cart/th-all-in-one-woo-cart.php', ), 'th-product-compare' => array( 'name' => esc_html__( 'Th Product Compare', 'top-store' ), 'img' => 'icon-128x128.gif', 'active_filename' => 'th-product-compare/th-product-compare.php', ), 'th-wishlist' => array( 'name' => esc_html__( 'TH Wishlist for WooCommerce', 'top-store' ), 'img' => 'icon-128x128.gif', 'active_filename' => 'th-wishlist/th-wishlist.php', ), 'lead-form-builder' => array( 'name' => esc_html__( 'Lead Form Builder', 'top-store' ), 'img' => 'icon-128x128.png', 'active_filename' => 'lead-form-builder/lead-form-builder.php', ), 'th-variation-swatches' => array( 'name' => esc_html__( 'TH Variation Swatches', 'top-store' ), 'img' => 'icon-128x128.gif', 'active_filename' => 'th-variation-swatches/th-variation-swatches.php', ), 'wp-popup-builder' => array( 'name' => esc_html__( 'WP Popup Builder – Popup Forms & Newsletter', 'top-store' ), 'img' => 'icon-128x128.png', 'active_filename' => 'wp-popup-builder/wp-popup-builder.php', ), ) ); // Import Data Content plugins add_theme_support( 'import-demo-content', array( 'hunk-companion' => array( 'name' => esc_html__( 'Hunk Companion', 'top-store' ), 'img' => 'icon-128x128.png', 'active_filename' => 'hunk-companion/hunk-companion.php', ) )); // Useful plugins add_theme_support( 'useful-plugins', array( 'themehunk-megamenu-plus' => array( 'name' => esc_html__( 'Megamenu plugin from Themehunk.', 'top-store' ), 'active_filename' => 'themehunk-megamenu-plus/themehunk-megamenu.php', ), ) ); // Add support for Custom Background. if(get_theme_mod('top_store_color_scheme')=='opn-dark'){ $args = array( 'default-color' => '2f2f2f', ); }else{ $args = array( 'default-color' => 'f1f1f1', ); } add_theme_support( 'custom-background',$args ); $GLOBALS['content_width'] = apply_filters( 'top_store_content_width', 640 ); add_theme_support( 'woocommerce', array( 'thumbnail_image_width' => 320, ) ); } endif; add_action( 'after_setup_theme', 'top_store_setup' ); /** * Set the content width in pixels, based on the theme's design and stylesheet. * * Priority 0 to make it available to lower priority callbacks. */ /** * Register widget area. */ function top_store_widgets_init(){ register_sidebar( array( 'name' => esc_html__( 'Primary Sidebar', 'top-store' ), 'id' => 'sidebar-1', 'description' => esc_html__( 'Add widgets here to appear in your primary sidebar.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s"><div class="top-store-widget-content">', 'after_widget' => '</div></div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Secondary Sidebar', 'top-store' ), 'id' => 'sidebar-2', 'description' => esc_html__( 'Add widgets here to appear in your secondary sidebar.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s"><div class="top-store-widget-content">', 'after_widget' => '</div></div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Above Header First Widget', 'top-store' ), 'id' => 'top-header-widget-col1', 'description' => esc_html__( 'Add widgets here to appear in top header.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Above Header Second Widget', 'top-store' ), 'id' => 'top-header-widget-col2', 'description' => esc_html__( 'Add widgets here to appear in top header.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Above Header Third Widget', 'top-store' ), 'id' => 'top-header-widget-col3', 'description' => esc_html__( 'Add widgets here to appear in top header.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Main Header Widget', 'top-store' ), 'id' => 'main-header-widget', 'description' => esc_html__( 'Add widgets here to appear in main header.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Footer Top First Widget', 'top-store' ), 'id' => 'footer-top-first', 'description' => esc_html__( 'Add widgets here to appear in top footer.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Footer Top Second Widget', 'top-store' ), 'id' => 'footer-top-second', 'description' => esc_html__( 'Add widgets here to appear in top footer.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Footer Top Third Widget', 'top-store' ), 'id' => 'footer-top-third', 'description' => esc_html__( 'Add widgets here to appear in top footer.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Footer Below First Widget', 'top-store' ), 'id' => 'footer-below-first', 'description' => esc_html__( 'Add widgets here to appear in top footer.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Footer Below Second Widget', 'top-store' ), 'id' => 'footer-below-second', 'description' => esc_html__( 'Add widgets here to appear in top footer.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar(array( 'name' => esc_html__( 'Footer Below Third Widget', 'top-store' ), 'id' => 'footer-below-third', 'description' => esc_html__( 'Add widgets here to appear in top footer.', 'top-store' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); for ( $i = 1; $i <= 4; $i++ ){ register_sidebar( array( 'name' => sprintf( esc_html__( 'Footer Widget Area %d', 'top-store' ), $i ), 'id' => 'footer-' . $i, 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); } } add_action( 'widgets_init', 'top_store_widgets_init' ); /** * Enqueue scripts and styles. */ function top_store_scripts(){ // enqueue css wp_enqueue_style( 'font-awesome', TOP_STORE_THEME_URI . '/third-party/fonts/font-awesome/css/font-awesome.css', '', TOP_STORE_THEME_VERSION ); wp_enqueue_style( 'th-icon', TOP_STORE_THEME_URI . '/third-party/fonts/th-icon/style.css', '', TOP_STORE_THEME_VERSION ); wp_enqueue_style( 'animate', TOP_STORE_THEME_URI . '/css/animate.css','',TOP_STORE_THEME_VERSION); wp_enqueue_style( 'top-store-menu', TOP_STORE_THEME_URI . '/css/top-store-menu.css','',TOP_STORE_THEME_VERSION); wp_enqueue_style( 'top-store-style', get_stylesheet_uri(), array(), TOP_STORE_THEME_VERSION ); wp_enqueue_style( 'dashicons' ); wp_add_inline_style('top-store-style', top_store_custom_style()); wp_add_inline_style('top-store-style', '@font-face{font-family:"th-icon";src:url("' . esc_url(get_template_directory_uri() . '/third-party/fonts/th-icon/fonts/th-icon.ttf?k3xn19') . '") format("truetype");font-weight:normal;font-style:normal;font-display:block;}'); //enqueue js wp_enqueue_script("jquery-effects-core",array( 'jquery' )); wp_enqueue_script( 'jquery-ui-autocomplete',array( 'jquery' ),'1.0.0',true ); wp_enqueue_script('imagesloaded'); wp_enqueue_script('top-store-menu-js', TOP_STORE_THEME_URI .'/js/top-store-menu.js', array( 'jquery' ), '1.0.0', true ); wp_enqueue_script('sticky-sidebar-js', TOP_STORE_THEME_URI .'/js/sticky-sidebar.js', array( 'jquery' ), TOP_STORE_THEME_VERSION , true ); wp_enqueue_script('top-store-accordian-menu-js', TOP_STORE_THEME_URI .'/js/top-store-accordian-menu.js', array( 'jquery' ), TOP_STORE_THEME_VERSION , true ); wp_enqueue_script( 'top-store-custom-js', TOP_STORE_THEME_URI .'/js/top-store-custom.js', array( 'jquery' ), TOP_STORE_THEME_VERSION , true ); $topstorelocalize = array( 'top_store_move_to_top_optn' => (bool) get_theme_mod('top_store_move_to_top',false), ); wp_localize_script( 'top-store-custom-js', 'top_store', $topstorelocalize); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ){ wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'top_store_scripts' ); /** * Load init. */ require_once trailingslashit(TOP_STORE_THEME_DIR).'inc/init.php'; //custom function conditional check for blog page function top_store_is_blog (){ return ( is_archive() || is_author() || is_category() || is_home() || is_single() || is_tag()) && 'post' == get_post_type(); } if ( ! function_exists( 'wp_body_open' ) ) { /** * Shim for wp_body_open, ensuring backward compatibility with versions of WordPress older than 5.2. */ function wp_body_open() { do_action( 'wp_body_open' ); } } if (!function_exists('top_store_is_json')) { function top_store_is_json( $string ){ return is_string( $string ) && is_array( json_decode( $string, true ) ) ? true : false; } } <!DOCTYPE html> <html lang="fr-FR"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="theme-color" content="#fff" /> <link rel="profile" href="http://gmpg.org/xfn/11"> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//paytech.sn' /> <link rel="alternate" type="application/rss+xml" title="Flux pour Gooddeal-Sénégal » Filles Catégorie" href="https://www.geek.smart-group.sn/product-category/enfants/vetements-enfant/filles/feed/" /> <style id="wp-img-auto-sizes-contain-inline-css"> img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px} /*# sourceURL=wp-img-auto-sizes-contain-inline-css */ </style> <link rel='stylesheet' id='taiowc-style-css' href='https://www.geek.smart-group.sn/wp-content/plugins/th-all-in-one-woo-cart//assets/css/taiowc-style.css?ver=1.1.3' media='all' /> <style id="taiowc-style-inline-css"> .cart_fixed_2 .taiowc-content h4{display:block}.taiowc-wrap{background-color:} .taiowc-content .taiowc-total{color:#111; font-size:14px;} .taiowc-wrap .cart-count-item{background-color:#111; color:#fff;} .taiowc-icon img{width:24px;} .taiowc-icon{color:#111;} .taiowc-icon{width:24px;} .taiowc-fixed-cart .taiowc-icon,.cart_fixed_1 .taiowc-content .taiowc-icon img{width:24px;} .cart_fixed_1 .taiowc-cart-item,.cart_fixed_2.taiowc-wrap{border-radius:100px;} .cart_fixed_1 .taiowc-cart-item,.cart_fixed_2.taiowc-wrap{background-color:#ffffff70;} .cart_fixed_1 .taiowc-icon, .cart_fixed_2 .taiowc-icon{color:#111;} .taiowc-fixed-cart .taiowc-total,.taiowc-fixed-cart .taiowc-content:hover{color:#111;} .cart_fixed_1 .cart-count-item{background-color:#111; color:#fff;}.cart-heading{background-color:;} .cart-heading svg{color:#111;} .cart-heading h4,.cart_fixed_2 .taiowc-content h4{color:#111;} .taiowc-cart-close:after{color:#111;}.taiowc-cart-model{background-color:#f9fafb;}.taiowc .taiowc-cart-model-body div.taiowc-woocommerce-mini-cart-item,input[type=number].taiowc-quantity{background-color:#fff;}.taiowc-cart-model-body .item-product-wrap .star-rating{color:#e5a632;} .quantity-text,input[type=number].taiowc-quantity,.quantity .amount{color:#111;}input[type=number].taiowc-quantity{border:1px solid #ebebeb;}.taiowc-related-product-title{background-color:#fff;} .taiowc-related-product-title{color:#111;} .taiowc-related-product-cont ul li{background-color:#fff;} .taiowc-related-product-right-area h4 a{color:#111;} .taiowc-related-product-right-area .price{color:#111;} .taiowc-related-product-right-area .star-rating{color:#e5a632;} .taiowc-related-product-right-area a.th-button{background-color:#111!important;color:#fff!important;}color:#8b95a5;} .taiowc-cart-model{background-color:;} .taiowc-total-wrap{color:#111;} .taiowc-total-wrap a{color:#111;} .taiowc-cart-model-footer .cart-button .buttons .checkout,.taiowc-shptgl-cont .woocommerce-shipping-calculator .shipping-calculator-form button{background-color:#111!important;color:#fff!important; border-color:#111;} .taiowc-cart-model-footer .cart-button .button:first-child{color: #111!important;}.taiowc-cart-model-footer .cart-button .buttons a:not(.checkout){background-color:!important; color:#111!important;} .taiowc-cart-model-footer .cart-button .buttons a{border-radius:12px!important;}.taiowc-coupon-box{background:#f3f3f3;border-color:#f3f3f3;} .taiowc-coupon input#taiowc-coupon-code{color:#111;} .taiowc-coupon input#taiowc-coupon-code::placeholder {color:#111;} .taiowc-coupon-submit{color:;} .taiowc-show-coupon{color:#008000;} .coupon-list{background:#FFF; border-color:rgba(129,129,129,.2);} .taiowc-coupon-list .code{color:#111;border-color:#111;} .coupon-list .desc,.taiowc-cart-model .taiowc-coupon-list .owl-carousel .owl-nav .owl-next,.taiowc-cart-model .taiowc-coupon-list .owl-carousel .owl-nav .owl-prev{color:#111;} .coupon-list .off{color:#9ca3af;} .coupon-list .taiowc-coupon-apply-btn.button.added,.coupon-list .taiowc-coupon-apply-btn.button{border-color:#111; background:#111!important;color:#fff;} .taiowc-coupon-remove-coupon{background:#f6f7f7;color:#111;} .taiowc-coupon-remove-coupon span{color:#ef6238;}.taiowc-notice-box .woocommerce-message, .taiowc-notice-container .taiowc-notices li{color:#fff;background:#4db359;} .taiowc-notice-box .woocommerce-error, .taiowc-notices li.taiowc-notice-error{ color:#fff;background:#b73d3d;}.cart_fixed_1 .taiowc-content,.taiowc-wrap.cart_fixed_2{right:29px; bottom:36px; left:auto} /*# sourceURL=taiowc-style-inline-css */ </style> <link rel='stylesheet' id='taiowc-owl.carousel-style-css' href='https://www.geek.smart-group.sn/wp-content/plugins/th-all-in-one-woo-cart//assets/css/owl.carousel.css?ver=2.3.2' media='all' /> <link rel='stylesheet' id='th-icon-css-css' href='https://www.geek.smart-group.sn/wp-content/plugins/th-all-in-one-woo-cart//th-icon/style.css?ver=2.3.2' media='all' /> <link rel='stylesheet' id='dashicons-css' href='https://www.geek.smart-group.sn/wp-includes/css/dashicons.min.css?ver=7.0' media='all' /> <link rel='stylesheet' id='th-icon-css' href='https://www.geek.smart-group.sn/wp-content/plugins/vayu-blocks/inc/th-icon/style.css' media='all' /> <link rel='stylesheet' id='vayu-blocks-frontend-css' href='https://www.geek.smart-group.sn/wp-content/plugins/vayu-blocks/public/build/style-multi-block-editor.css?ver=7.0' media='all' /> <link rel='stylesheet' id='vayu-blocks-global-main-css' href='https://www.geek.smart-group.sn/wp-content/plugins/vayu-blocks/inc/assets/css/global.css' media='all' /> <style id="wp-emoji-styles-inline-css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 0.07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } /*# sourceURL=wp-emoji-styles-inline-css */ </style> <style id="wp-block-library-inline-css"> :root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-color]){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}} /*# sourceURL=/wp-includes/css/dist/block-library/common.min.css */ </style> <link rel='stylesheet' id='animate.compact-css' href='https://www.geek.smart-group.sn/wp-content/plugins/vayu-blocks/inc/assets/css/animate.compact.css' media='all' /> <link rel='stylesheet' id='PayTech-css' href='https://paytech.sn/cdn/paytech.min.css?ver=7.0' media='all' /> <link rel='stylesheet' id='woocommerce-layout-css' href='https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/css/woocommerce-layout.css?ver=10.1.4' media='all' /> <link rel='stylesheet' id='woocommerce-smallscreen-css' href='https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/css/woocommerce-smallscreen.css?ver=10.1.4' media='only screen and (max-width: 768px)' /> <link rel='stylesheet' id='woocommerce-general-css' href='https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/css/woocommerce.css?ver=10.1.4' media='all' /> <style id="woocommerce-inline-inline-css"> .woocommerce form .form-row .required { visibility: visible; } /*# sourceURL=woocommerce-inline-inline-css */ </style> <link rel='stylesheet' id='th-product-compare-style-front-css' href='https://www.geek.smart-group.sn/wp-content/plugins/th-product-compare/assets/fstyle.css?ver=1.0.0' media='all' /> <link rel='stylesheet' id='th-product-compare-style-front-mobile-css' href='https://www.geek.smart-group.sn/wp-content/plugins/th-product-compare/assets/fstyle-mobile.css?ver=1.0.0' media='all' /> <link rel='stylesheet' id='brands-styles-css' href='https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/css/brands.css?ver=10.1.4' media='all' /> <link rel='stylesheet' id='owl.carousel-css-css' href='https://www.geek.smart-group.sn/wp-content/plugins/hunk-companion/almaira-shop/assets/css/owl.carousel.css?ver=1.0.0' media='all' /> <link rel='stylesheet' id='th-advance-product-search-front-css' href='https://www.geek.smart-group.sn/wp-content/plugins/th-advance-product-search/assets/css/thaps-front-style.css?ver=1.4.2' media='all' /> <style id="th-advance-product-search-front-inline-css"> .thaps-search-box{max-width:550px;} #thaps-search-button { width: auto; font-size: 16px; padding: 0px 1rem; }.thaps-from-wrap,input[type='text'].thaps-search-autocomplete,.thaps-box-open .thaps-icon-arrow{background-color:;} .thaps-from-wrap{background-color:;} input[type='text'].thaps-search-autocomplete, input[type='text'].thaps-search-autocomplete::-webkit-input-placeholder{color:;} .thaps-from-wrap:focus-within { border: 1px solid #155dfc; } .thaps-box-open .thaps-icon-arrow{border-left-color:;border-top-color:;} #thaps-search-button,.thaps-suggestion-more:hover .thaps-content-wrapp{background:#155dfc; color:#FFF;} #thaps-search-button:hover{background:#155dfc; color:#FFF;} .thaps-loading{ border: 3px solid #FFF33; border-top-color: #FFF; } .thaps-loading + .tapsp-voice-btn + #thaps-search-button, .thaps-loading + #thaps-search-button{color:#155dfc;} .submit-active #thaps-search-button .th-icon path{color:;} .thaps-suggestion-heading .thaps-title, .thaps-suggestion-heading .thaps-title strong{color:;} .thaps-title,.thaps-suggestion-taxonomy-product-cat .thaps-title, .thaps-suggestion-more .thaps-title strong{color:;} .thaps-sku, .thaps-desc, .thaps-price,.thaps-price del{color:;} .thaps-suggestion-heading{border-color:;} .thaps-autocomplete-selected{background:;} .thaps-autocomplete-suggestions,.thaps-suggestion-more{background:;} .thaps-title strong{color:;} .thaps-autocomplete-suggestions{border-color:} .thaps-autocomplete-suggestion.thaps-suggestion-heading .thaps-title{color:} .thaps-autocomplete-suggestions{width:550px!important} /*# sourceURL=th-advance-product-search-front-inline-css */ </style> <link rel='stylesheet' id='lfb_f_css-css' href='https://www.geek.smart-group.sn/wp-content/plugins/lead-form-builder/css/f-style.css?ver=7.0' media='all' /> <link rel='stylesheet' id='font-awesome-css' href='https://www.geek.smart-group.sn/wp-content/plugins/elementor/assets/lib/font-awesome/css/font-awesome.min.css?ver=4.7.0' media='all' /> <script id="jquery-core-js" src="https://www.geek.smart-group.sn/wp-includes/js/jquery/jquery.min.js?ver=3.7.1"></script> <script id="jquery-migrate-js" src="https://www.geek.smart-group.sn/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.4.1"></script> <script id="taiowc-owl.carousel-script-js" src="https://www.geek.smart-group.sn/wp-content/plugins/th-all-in-one-woo-cart//assets/js/owl.carousel.js?ver=1"></script> <script data-wp-strategy="defer" defer id="js-cookie-js" src="https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/js/js-cookie/js.cookie.min.js?ver=2.1.4-wc.10.1.4"></script> <script id="wc-cart-fragments-js-extra"> var wc_cart_fragments_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","cart_hash_key":"wc_cart_hash_2ff17d5d6015709c09c643195b4a455e","fragment_name":"wc_fragments_2ff17d5d6015709c09c643195b4a455e","request_timeout":"5000"}; //# sourceURL=wc-cart-fragments-js-extra </script> <script data-wp-strategy="defer" defer id="wc-cart-fragments-js" src="https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/js/frontend/cart-fragments.min.js?ver=10.1.4"></script> <script data-wp-strategy="defer" defer id="jquery-blockui-js" src="https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/js/jquery-blockui/jquery.blockUI.min.js?ver=2.7.0-wc.10.1.4"></script> <script id="wc-add-to-cart-js-extra"> var wc_add_to_cart_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_view_cart":"Voir le panier","cart_url":"https://www.geek.smart-group.sn/panier/","is_cart":"","cart_redirect_after_add":"no"}; //# sourceURL=wc-add-to-cart-js-extra </script> <script data-wp-strategy="defer" defer id="wc-add-to-cart-js" src="https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/js/frontend/add-to-cart.min.js?ver=10.1.4"></script> <script id="woocommerce-js-extra"> var woocommerce_params = {"ajax_url":"/wp-admin/admin-ajax.php","wc_ajax_url":"/?wc-ajax=%%endpoint%%","i18n_password_show":"Afficher le mot de passe","i18n_password_hide":"Masquer le mot de passe"}; //# sourceURL=woocommerce-js-extra </script> <script data-wp-strategy="defer" defer id="woocommerce-js" src="https://www.geek.smart-group.sn/wp-content/plugins/woocommerce/assets/js/frontend/woocommerce.min.js?ver=10.1.4"></script> <script id="owl.carousel-js-js" src="https://www.geek.smart-group.sn/wp-content/plugins/hunk-companion/gogolite/js/gogo-js/owl.carousel.js?ver=7.0"></script> <script id="jssor.slider-js-js" src="https://www.geek.smart-group.sn/wp-content/plugins/hunk-companion/open-shop/assets/js/jssor.slider.min.js?ver=7.0"></script> <script id="th-advance-product-search-front-js-extra"> var th_advance_product_search_options = {"ajaxUrl":"https://www.geek.smart-group.sn/wp-admin/admin-ajax.php","thaps_nonce":"ecc6f80961","thaps_length":"1","thaps_ga_event":"1","thaps_ga_site_search_module":"","tapsp_enable_voice_search":"","tapsp_show_body_overlay":"1"}; //# sourceURL=th-advance-product-search-front-js-extra </script> <script id="th-advance-product-search-front-js" src="https://www.geek.smart-group.sn/wp-content/plugins/th-advance-product-search/assets/js/thaps-search.js?ver=1"></script> <link rel="https://api.w.org/" href="https://www.geek.smart-group.sn/wp-json/" /><link rel="alternate" title="JSON" type="application/json" href="https://www.geek.smart-group.sn/wp-json/wp/v2/product_cat/99" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.geek.smart-group.sn/xmlrpc.php?rsd" /> <meta name="generator" content="WordPress 7.0" /> <meta name="generator" content="WooCommerce 10.1.4" /> <noscript><style>.woocommerce-product-gallery{ opacity: 1 !important; }</style></noscript> <meta name="generator" content="Elementor 3.31.3; features: e_font_icon_svg, additional_custom_breakpoints, e_element_cache; settings: css_print_method-external, google_font-enabled, font_display-swap"> <style> .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+4):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } @media screen and (max-height: 1024px) { .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+3):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } @media screen and (max-height: 640px) { .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload), .e-con.e-parent:nth-of-type(n+2):not(.e-lazyloaded):not(.e-no-lazyload) * { background-image: none !important; } } </style> <style id="wp-custom-css"> .leadform-show-form h2{ display:none; } @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); /* TITRES (H1-H6) */ h1, h2, h3, h4, h5, h6 { font-family: 'Inter', sans-serif !important; font-weight: 700 !important; } /* MENU PRINCIPAL */ .main-navigation a, .top-header-menu a { font-family: 'Inter', sans-serif !important; font-weight: 500 !important; } /* PRODUITS & BOUTONS */ .woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price, .button, .woocommerce a.button, .woocommerce button.button { font-family: 'Inter', sans-serif !important; } /* PARAGRAPHES ET TEXTES GÉNÉRAUX */ p, span, li, td, th { font-family: 'Inter', sans-serif !important; } /* EN-TÊTE ET BARRE DE RECHERCHE */ .site-title, .site-description, .site-header, .search-field { font-family: 'Inter', sans-serif !important; font-weight: 500 !important; } </style> </head> <body class="wp-custom-logo wp-theme-top-store theme-top-store woocommerce woocommerce-page woocommerce-no-js th-advance-product-search taiowc-slide-right fxd-right taiowc elementor-default elementor-kit-1086"> <div id="page" class="top-store-site">