self::NICHE_ID, 'title' => __( 'Demo WooCommerce store', 'brandy' ), 'img' => 'https://thien.ninjateam.org/wp-content/uploads/2024/04/woo-site-thumbnail-1.png', 'demo_url' => '#', 'plan' => 'free', 'tags' => array( 'ecommerce' ), 'supports' => array( 'gutenberg', 'elementor' ), 'template' => array( 'typography' => array( 'heading' => array( 'font_family' => 'Outfit', ), 'body' => array( 'font_family' => 'system', ), ), 'colors' => array( 'palette_1' => '#2F70B3', 'palette_2' => '#2F70B3', 'palette_3' => '#272829', 'body_text' => array( 'primary' => 'var(--palette_3)', ), ), 'button' => array( 'color' => array( 'normal' => '#ffffff', 'hover' => '#ffffff', ), 'background' => array( 'normal' => 'var(--palette_1)', 'hover' => 'var(--palette_3)', ), 'border_radius' => array( 'unit' => 'px', 'min' => 0, 'max' => 100, 'value' => 12, ), 'padding' => array( 'top' => 10, 'bottom' => 10, 'left' => 24, 'right' => 24, 'unit' => 'px', ), ), 'woocommerce' => array( 'product_layout' => 'option_1', 'product_thumb_size' => 'size_2', ), 'blog' => array( 'blog_archive_layout' => 'list', 'blog_archive_has_sidebar' => true, ), 'headers' => array( 'sample_header' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/sample-header.json', 'checkout_header' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/checkout-header.json', ), 'footers' => array( 'sample_footer' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/sample-footer.json', 'checkout_footer' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/checkout-footer.json', ), ), 'sample_products' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/sample-products.csv', 'sample_posts' => array( 'gutenberg' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/sample-posts.xml', 'elementor' => '', ), 'sample_pages' => array( 'gutenberg' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/sample-pages-gutenberg.xml', 'elementor' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/sample-pages-elementor.xml', ), 'sample_menus' => array( array( 'name' => __( 'Shopping menu', 'brandy' ), 'locations' => array( 'primary-menu', 'header-menu-1' ), 'items' => array( array( 'title' => __( 'Home', 'brandy' ), 'status' => 'publish', 'url' => home_url(), ), array( 'title' => __( 'Blog', 'brandy' ), 'status' => 'publish', 'object_id' => brandy_get_blog_page_id(), 'item_object' => 'page', 'item_type' => 'post_type', ), array( 'title' => __( 'Shop', 'brandy' ), 'status' => 'publish', 'object_id' => brandy_get_shop_page_id(), 'item_object' => 'page', 'item_type' => 'post_type', ), array( 'title' => __( 'Cart', 'brandy' ), 'status' => 'publish', 'object_id' => brandy_get_cart_page_id(), 'item_object' => 'page', 'item_type' => 'post_type', ), array( 'title' => __( 'Checkout', 'brandy' ), 'status' => 'publish', 'object_id' => brandy_get_checkout_page_id(), 'item_object' => 'page', 'item_type' => 'post_type', ), array( 'title' => __( 'FAQ', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( 'Contact us', 'brandy' ), 'status' => 'publish', 'url' => '#', ), ), ), array( 'name' => __( 'Customer service', 'brandy' ), 'items' => array( array( 'title' => __( 'Shipping & delivery', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( 'Track your order', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( 'Refund policy', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( 'Terms and conditions', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( 'FAQ', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( 'Contact us', 'brandy' ), 'status' => 'publish', 'url' => '#', ), ), ), array( 'name' => __( 'Special sales menu', 'brandy' ), 'items' => array( array( 'title' => __( 'Our best seller', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( '-50% off items', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( 'Buy 3 and pay 2', 'brandy' ), 'status' => 'publish', 'url' => '#', ), array( 'title' => __( 'Custom order', 'brandy' ), 'status' => 'publish', 'url' => '#', ), 'locations' => array( 'secondary-menu', 'header-menu-1' ), ), ), ), 'sample_widgets' => BRANDY_TEMPLATE_DIR . '/inc/Niches/WooCommerce/sample-data/sample-widgets.xml', ); return $data; } public function site_services() { get_template_part( 'template-parts/site-services' ); } public function after_import_header() { HeaderTemplateMetaService::assign_meta_value( brandy_get_checkout_page_id(), 'template_woocommerce_checkout' ); } public function after_import_footer() { FooterTemplateMetaService::assign_meta_value( brandy_get_checkout_page_id(), 'template_woocommerce_checkout' ); } }