/** * Theme functions and definitions * * @package HelloElementor */ use Elementor\WPNotificationsPackage\V110\Notifications as ThemeNotifications; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } define( 'HELLO_ELEMENTOR_VERSION', '3.3.0' ); 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', ] ); 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( '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() { $min_suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min'; if ( apply_filters( 'hello_elementor_enqueue_style', true ) ) { wp_enqueue_style( 'hello-elementor', get_template_directory_uri() . '/style' . $min_suffix . '.css', [], HELLO_ELEMENTOR_VERSION ); } if ( apply_filters( 'hello_elementor_enqueue_theme_style', true ) ) { wp_enqueue_style( 'hello-elementor-theme-style', get_template_directory_uri() . '/theme' . $min_suffix . '.css', [], HELLO_ELEMENTOR_VERSION ); } if ( hello_elementor_display_header_footer() ) { wp_enqueue_style( 'hello-elementor-header-footer', get_template_directory_uri() . '/header-footer' . $min_suffix . '.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' ); // Admin notice if ( is_admin() ) { require get_template_directory() . '/includes/admin-functions.php'; } // 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(); } } function hello_elementor_get_theme_notifications(): ThemeNotifications { static $notifications = null; if ( null === $notifications ) { require get_template_directory() . '/vendor/autoload.php'; $notifications = new ThemeNotifications( 'hello-elementor', HELLO_ELEMENTOR_VERSION, 'theme' ); } return $notifications; } hello_elementor_get_theme_notifications(); {"id":27,"date":"2025-03-18T06:22:42","date_gmt":"2025-03-18T06:22:42","guid":{"rendered":"http:\/\/localhost\/foxmandal\/?page_id=27"},"modified":"2025-03-18T10:49:50","modified_gmt":"2025-03-18T10:49:50","slug":"home","status":"publish","type":"page","link":"https:\/\/foxmandalgreen.com\/","title":{"rendered":"Home"},"content":{"rendered":"

Empowering Communities for Green GrowthThrough education, advocacy, and sustainable initiatives, we enable individuals and organizations to adopt eco-friendly practices that benefit both people and the planet.Take ActionInnovate. Collaborate.<\/br> Transform.By partnering with businesses, governments, and communities, we foster a future where economic growth and environmental responsibility go hand in hand.Sign UpA Step Towards a Sustainable FutureJoin us in our mission to combat climate change through innovative solutions that ensure cleaner air, healthier ecosystems, and a greener planet.Sign the PetitionSustainable Solutions for a Better TomorrowWe integrate cutting-edge technology and nature-based approaches to reduce carbon footprints, improve resource efficiency, and drive impactful environmental change.Support Now
\n\t\t\t\t\t\t\t<\/path><\/svg>
\n\t\t\t\t\t\t\t<\/path><\/svg>\t\t\t\t\t\t<\/p>\n

Our Values<\/h2>\n

\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"123\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Our Values<\/h2>\n

We are committed to environmental sustainability, integrating nature and technology to create a resilient future. Our focus includes emission control, carbon sequestration, bio-fertilizers, wastewater management, carbon trading, and sustainable aquaculture practices.<\/p>\n

Read More ><\/a><\/p>\n

\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"133\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Our Mission<\/h2>\n

Our mission is to implement innovative solutions to mitigate climate change and promote sustainability. We specialize in emission control, carbon sequestration, bio-fertilizers, wastewater management, carbon trading, and sustainable aquaculture for lasting environmental impact.<\/p>\n

Read More ><\/a><\/p>\n

\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"1111\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

About Us<\/h2>\n

We are a pioneering organization dedicated to environmental sustainability, specializing in emission control, carbon sequestration, bio-fertilizers, wastewater management, carbon trading, and sustainable aquaculture practices.<\/p>\n

Read More ><\/a><\/p>\n

Leading the Green Revolution<\/h2>\n

We bring together people from all sides and draw from deep expertise to tackle environmental issues from every angle.<\/p>\n

\t\t\t\t<\/path><\/svg>\t\t\t\t<\/p>\n

\n\t\t\t\t\t\t\tScientific Evidence
\n\t\t\t\t\t<\/h3>\n

\n\t\t\t\t\t\tUtilizing cutting-edge research and data-driven strategies to identify and implement the most effective solutions.\t\t\t\t\t<\/p>\n

\t\t\t\t<\/path><\/svg>\t\t\t\t<\/p>\n

\n\t\t\t\t\t\t\tEconomic Sustainability
\n\t\t\t\t\t<\/h3>\n

\n\t\t\t\t\t\tLeveraging economic incentives to make sustainability a viable choice for businesses and individuals.\t\t\t\t\t<\/p>\n

\t\t\t\t<\/path><\/svg>\t\t\t\t<\/p>\n

\n\t\t\t\t\t\t\tPowerful Partnerships
\n\t\t\t\t\t<\/h3>\n

\n\t\t\t\t\t\tCollaborating with governments, organizations, and communities to amplify our impact.\t\t\t\t\t<\/p>\n

\t\t\t\t<\/path><\/svg>\t\t\t\t<\/p>\n

\n\t\t\t\t\t\t\tClimate Justice
\n\t\t\t\t\t<\/h3>\n

\n\t\t\t\t\t\tAdvocating for equitable policies that ensure all communities benefit from environmental progress.\t\t\t\t\t<\/p>\n

\t\t\t\t<\/path><\/svg>\t\t\t\t<\/p>\n

\n\t\t\t\t\t\t\tStrong Advocacy
\n\t\t\t\t\t<\/h3>\n

\n\t\t\t\t\t\tInfluencing policy and driving regulatory changes to support sustainable development.\t\t\t\t\t<\/p>\n

\t\t\t\t<\/path><\/svg>\t\t\t\t<\/p>\n

\n\t\t\t\t\t\t\tCommitment to Diversity
\n\t\t\t\t\t<\/h3>\n

\n\t\t\t\t\t\tFostering inclusive participation in the fight for a sustainable future.\t\t\t\t\t<\/p>\n

Join Us<\/h2>\n

Join Our Sustainability Initiatives<\/h2>\n

Stay updated on upcoming workshops, training programs, and awareness campaigns aimed at promoting sustainable practices and environmental conservation.<\/p>\n

\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tJoin Now
\n\t\t\t\t\t<\/a><\/p>\n

Contact Us<\/h2>\n

Get in Touch with Us<\/h2>\n

We welcome collaboration and inquiries. Reach out to us for project partnerships, consulting services, and general support in sustainability initiatives.<\/p>\n

\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\tContact now
\n\t\t\t\t\t<\/a><\/p>\n

Issues We Address<\/h2>\n

\t\tWe are addressing critical challenges and driving meaningful change to promote a clean energy future, vibrant communities, and a harmonious balance between people and nature.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n1\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Emission Control<\/h2>\n

\t\tDeploying advanced technologies to curb pollution.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n2\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Carbon Sequestration<\/h2>\n

\t\tEnhancing natural and technological methods to absorb carbon dioxide.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n3\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Sustainable Agriculture<\/h2>\n

\t\tPromoting bio-fertilizers and bio-pesticides for chemical-free farming.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n4\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Wastewater Management<\/h2>\n

\t\tImplementing eco-friendly water treatment solutions.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n5\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Carbon Credit Trading<\/h2>\n

\t\tFacilitating businesses and organizations in leveraging carbon credits for financial and environmental benefits.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n6\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Environmental Assessments<\/h2>\n

\t\tConducting EIA\/EMP\/ESG evaluations to guide sustainable project planning.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n7\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Renewable Energy Integration<\/h2>\n

\t\tSupporting the transition to solar, wind, and other sustainable energy sources to reduce reliance on fossil fuels.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n8\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Sustainable Aquaculture<\/h2>\n

\t\tImplementing eco-friendly aquaculture practices to protect marine biodiversity and enhance food security.\t\t<\/p>\n

Protecting Nature, Empowering Communities<\/h2>\n

\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"c1-1\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Clean Energy Revolution<\/h2>\n

\t\tPhasing out fossil fuels and championing renewable energy solutions for a sustainable future.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"n5\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Conserving Ecosystems<\/h2>\n

\t\tSafeguarding forests, wetlands, and marine habitats to protect biodiversity and combat climate change.
\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"c3\"\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/p>\n

Community-Led Sustainability<\/h2>\n

\t\tSupporting grassroots initiatives to promote clean water, waste reduction, and environmental stewardship.<\/p>\n","protected":false},"excerpt":{"rendered":"

Empowering Communities for Green GrowthThrough education, advocacy, and sustainable initiatives, we enable individuals and organizations to adopt eco-friendly practices that benefit both people and the planet.Take ActionInnovate. Collaborate. Transform.By partnering with businesses, governments, and communities, we foster a future where economic growth and environmental responsibility go hand in hand.Sign UpA Step Towards a Sustainable FutureJoin […]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"elementor_header_footer","meta":{"footnotes":""},"class_list":["post-27","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/foxmandalgreen.com\/index.php?rest_route=\/wp\/v2\/pages\/27","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/foxmandalgreen.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/foxmandalgreen.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/foxmandalgreen.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/foxmandalgreen.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=27"}],"version-history":[{"count":142,"href":"https:\/\/foxmandalgreen.com\/index.php?rest_route=\/wp\/v2\/pages\/27\/revisions"}],"predecessor-version":[{"id":224,"href":"https:\/\/foxmandalgreen.com\/index.php?rest_route=\/wp\/v2\/pages\/27\/revisions\/224"}],"wp:attachment":[{"href":"https:\/\/foxmandalgreen.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=27"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}