add_theme_support('post-thumbnails'); add_theme_support('menu'); //Logo function config_custom_logo() { add_theme_support( 'custom-logo' ); } add_action( 'after_setup_theme' , 'config_custom_logo' ); //Add Script function wpdocs_theme_name_scripts() { wp_enqueue_script( 'aos', get_template_directory_uri() . '/assets/js/jquery.min.js', array(), '1.0', true ); wp_enqueue_script( 'bootstrapmin', get_template_directory_uri() . '/assets/js/plugins.js', array('jquery'), '1.0', true ); wp_enqueue_script( 'poppermin', get_template_directory_uri() . '/assets/js/theme.js"', array('jquery'), '1.0', true ); } add_action( 'wp_enqueue_scripts', 'wpdocs_theme_name_scripts' ); //Add Stylesheet function namespace_theme_stylesheets() { wp_register_style( 'style', get_template_directory_uri() .'/style.css', array(), null, 'all' ); wp_register_style( 'plugins', get_template_directory_uri() .'/assets/css/plugins.css', array(), null, 'all' ); wp_register_style( 'style-main', get_template_directory_uri() .'/assets/css/style.css', array(), null, 'all' ); wp_register_style( 'navy', get_template_directory_uri() .'/assets/css/navy.css', array(), null, 'all' ); wp_register_style( 'stylesheet', get_template_directory_uri() .'/assets/css/stylesheet.css', array(), null, 'all' ); wp_register_style( 'responsive', get_template_directory_uri() .'/assets/css/responsive.css', array(), null, 'all' ); wp_enqueue_style( 'style' ); wp_enqueue_style( 'plugins' ); wp_enqueue_style( 'style-main' ); wp_enqueue_style( 'navy' ); wp_enqueue_style( 'stylesheet' ); wp_enqueue_style( 'responsive' ); } add_action( 'wp_enqueue_scripts', 'namespace_theme_stylesheets' ); //Add Menu function wpb_custom_new_menu() { register_nav_menus( array( 'main-navigation' => __( 'Main Navigation' ), 'footer-menu-1' => __( 'Footer Menu' ), ) ); } add_action( 'init', 'wpb_custom_new_menu' ); //Add options Menu in Dashboard add_action('acf/init', 'my_acf_op_init'); function my_acf_op_init() { // Check function exists. if( function_exists('acf_add_options_page') ) { // Add parent. $parent = acf_add_options_page(array( 'page_title' => __('Theme General Settings'), 'menu_title' => __('Theme Settings'), 'redirect' => false, )); } } @ini_set( 'upload_max_size' , '64M' ); @ini_set( 'post_max_size', '64M'); @ini_set( 'max_execution_time', '300' ); // Disable Gutenberg add_filter('use_block_editor_for_post', '__return_false', 10); // //Add Class in Li function add_classes_on_li($classes, $item, $args) { $classes[] = 'nav-item'; return $classes; } add_filter('nav_menu_css_class','add_classes_on_li',1,3); //Add Class in A Tag add_filter( 'nav_menu_link_attributes', function($atts) { $atts['class'] = "nav-link"; return $atts; }, 100, 1 ); //Add service Posttype function create_posttype_services() { register_post_type( 'services', array( 'labels' => array( 'name' => __( 'Services' ), 'singular_name' => __( 'Services' ), 'all_items' => __( 'All Services' ), ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'services'), 'show_in_rest' => true, 'supports' => array('title', 'editor', 'thumbnail',) ) ); } //Hooking up our function to theme setup add_action( 'init', 'create_posttype_services' ); //Add JOBS Posttype function create_posttype_jobs() { register_post_type( 'jobs', array( 'labels' => array( 'name' => __( 'Jobs' ), 'singular_name' => __( 'Jobs' ), 'all_items' => __( 'All Jobs' ), ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'jobs'), 'show_in_rest' => true, 'supports' => array('title', 'excerpt', 'author', 'thumbnail', 'editor', ) ) ); } //Hooking up our function to theme setup add_action( 'init', 'create_posttype_jobs' ); //Add Projects Posttype function create_posttype_projects() { register_post_type( 'projects', array( 'labels' => array( 'name' => __( 'Projects' ), 'singular_name' => __( 'Projects' ), 'all_items' => __( 'All Projects' ), ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'projects'), 'show_in_rest' => true, 'supports' => array('title', 'editor', 'thumbnail',) ) ); } //Hooking up our function to theme setup add_action( 'init', 'create_posttype_projects' ); // Register Custom Taxonomy function custom_taxonomy_projects() { $labels = array( 'name' => _x( 'projects Categories', 'Taxonomy General Name', 'text_domain' ), 'singular_name' => _x( 'projects Category', 'Taxonomy Singular Name', 'text_domain' ), 'menu_name' => __( 'projects Category', 'text_domain' ), 'all_items' => __( 'All Items', 'text_domain' ), 'parent_item' => __( 'Parent Item', 'text_domain' ), 'parent_item_colon' => __( 'Parent Item:', 'text_domain' ), 'new_item_name' => __( 'New Item Name', 'text_domain' ), 'add_new_item' => __( 'Add New Item', 'text_domain' ), 'edit_item' => __( 'Edit Item', 'text_domain' ), 'update_item' => __( 'Update Item', 'text_domain' ), 'view_item' => __( 'View Item', 'text_domain' ), 'separate_items_with_commas' => __( 'Separate items with commas', 'text_domain' ), 'add_or_remove_items' => __( 'Add or remove items', 'text_domain' ), 'choose_from_most_used' => __( 'Choose from the most used', 'text_domain' ), 'popular_items' => __( 'Popular Items', 'text_domain' ), 'search_items' => __( 'Search Items', 'text_domain' ), 'not_found' => __( 'Not Found', 'text_domain' ), 'no_terms' => __( 'No items', 'text_domain' ), 'items_list' => __( 'Items list', 'text_domain' ), 'items_list_navigation' => __( 'Items list navigation', 'text_domain' ), ); $args = array( 'labels' => $labels, 'hierarchical' => true, 'public' => true, 'show_ui' => true, 'show_admin_column' => true, 'show_in_nav_menus' => true, 'show_tagcloud' => true, ); register_taxonomy( 'project_category', array( 'projects' ), $args ); } add_action( 'init', 'custom_taxonomy_projects', 0 ); add_action( 'init', 'create_tag_taxonomies', 0 ); //create two taxonomies, genres and tags for the post type "tag" function create_tag_taxonomies() { // Add new taxonomy, NOT hierarchical (like tags) $labels = array( 'name' => _x( ' Project Tags', 'taxonomy general name' ), 'singular_name' => _x( 'Project Tag', 'taxonomy singular name' ), 'search_items' => __( 'Search Tags' ), 'popular_items' => __( 'Popular Tags' ), 'all_items' => __( 'All Project Tags' ), 'parent_item' => null, 'parent_item_colon' => null, 'edit_item' => __( 'Edit Project Tag' ), 'update_item' => __( 'Update Project Tag' ), 'add_new_item' => __( 'Add New Project Tag' ), 'new_item_name' => __( 'New Tag Name' ), 'separate_items_with_commas' => __( 'Separate tags with commas' ), 'add_or_remove_items' => __( 'Add or remove tags' ), 'choose_from_most_used' => __( 'Choose from the most used tags' ), 'menu_name' => __( 'Tags' ), ); register_taxonomy('project-tag','projects',array( 'hierarchical' => false, 'labels' => $labels, 'show_ui' => true, 'update_count_callback' => '_update_post_term_count', 'query_var' => true, 'rewrite' => array( 'slug' => 'project-tag' ), )); } //For Dynamic Enteris in Contact Form 7 add_filter('wpcf7_form_tag_data_option', function($n, $options, $args) { if (in_array('jobposition', $options)){ $query = new WP_Query( array( 'orderby' => 'date', 'order' => 'DESC', 'posts_per_page' => '100', 'post_type' => 'jobs') ); while($query->have_posts()) : $query->the_post(); $title = get_the_title(); $jobposition [] = $title; endwhile; return $jobposition ; } return $n; }, 10, 3); //For Post Url in Contact form 7 add_action("wpcf7_posted_data", "wpcf7_add_referer_url"); function wpcf7_add_referer_url( $data ) { if (array_key_exists("url", $data) ) { $data['url'] = htmlspecialchars($_SERVER['HTTP_REFERER']); } return $data; }
BDR Group. (“we,” “our,” or “us”) is committed to protecting your privacy. This Privacy Policy explains how your personal information is collected, used, and disclosed by BDR Group.
This Privacy Policy applies to our website, www.bdrgroup.com, and its associated subdomains (collectively, our “Service”). By accessing or using our Service, you signify that you have read, understood, and agree to our collection, storage, use, and disclosure of your personal information as described in this Privacy Policy and our Terms of Service.
Definitions and Key Terms
Cookie: Small amount of data generated by a website and saved by your web browser. It is used to identify your browser, provide analytics, and remember information about you such as your language preference or login information: Jangpura Extension
Company: When this policy mentions “Company,” “we,” “us,” or “our” it refers to BDR Group, C-43, LGF, New Delhi 110014 which is responsible for your information under this Privacy Policy.
Country: Where BDR Group or the owners/founders of BDR Group are based, in this case, India.
Customer or Client: Refers to the company, organization or person that signs up to use the BDR Group Services.
Device: Any internet-connected device such as a phone, tablet, computer or any other device that can be used to visit BDR Group and use the services.
IP address: Every device connected to the Internet is assigned a number known as an Internet protocol (IP) address. These numbers are usually assigned in geographic blocks. An IP address can often be used to identify the location from which a device is connecting to the Internet.
Personnel: Refers to those individuals who are employed by BDR Group or are under contract to perform a service on behalf of one of the parties.
Personal Data: Any information that is directly, indirectly, or in connection with other information including a personal identification number-allows for the identification or identifiability of a natural person.
Service: Refers to the service provided by BDR Group as described in the relative terms (if available) and on this platform.
Third-party service: Refers to advertisers, contest sponsors, promotional and marketing partners, and others who provide our content or whose products or services we think may interest you.
Website: BDR Group’s site, which can be accessed via this URL: www.bdrgroup.com.
You: A person or entity that is registered with BDR Group to use the Services.
What Information Do We Collect?
We collect information from you when you visit our service, register, enquire about a service, subscribe to our newsletter, respond to a survey or fill out a form.
How Do We Use The Information We Collect?
Any of the information we collect from you may be used in one of the following ways:
Do we share the information we collect with third parties?
We may share the information that we collect, both personal and non-personal, with third parties such as advertisers, contest sponsors, promotional and marketing partners, and others who provide our content or whose products or services we think may interest you. We may also share it with our current and future affiliated companies and business partners, and if we are involved in a merger, asset sale or other business reorganization, we may also share or transfer your personal and non-personal information to our successors-in-interest.
We may engage trusted third-party service providers to perform functions and provide services to us, such as hosting and maintaining our servers and our service, database storage and management, e-mail management, storage marketing, credit card processing, customer service and fulfilling orders for products and services you may purchase through our platform. We will likely share your personal information, and possibly some non-personal information, with these third parties to enable them to perform these services for us and for you.
We may share portions of our log file data, including IP addresses, for analytics purposes with third parties such as web analytics partners, application developers, and ad networks. If your IP address is shared, it may be used to estimate general location and other technographics such as connection speed, whether you have visited the service in a shared location, and the type of device used to visit the service. They may aggregate information about our advertising and what you see on the service and then provide auditing. research and reporting for us and our advertisers.
We may also disclose personal and non-personal information about you to government or law enforcement officials or private parties as we, in our sole discretion, believe necessary or appropriate in order to respond to claims, legal process (including subpoenas), to protect our rights and interests or those of a third party, the safety of the public or any person, to prevent or stop any illegal, unethical, or legally actionable activity, or to otherwise comply with applicable court orders, laws, rules and regulations.
Where and when is information collected from customers and end users?
We will collect the personal information that you submit to us. We may also receive personal information about you from third parties as described above.
How Do We Use Your Email Address?
By submitting your email address on this website, you agree to receive emails from us. You can cancel your participation in any of these email lists at any time by clicking on the opt-out link or other unsubscribe option that is included in the respective email. We only send emails to people who have authorized us to contact them, either directly, or through a third party. We do not send unsolicited commercial emails, because we hate spam as much as you do. By submitting your email address, you also agree to allow us to use your email address for customer audience targeting on sites like Facebook, where we display custom advertising to specific people who have opted-in to receive communications from us. Email addresses submitted only through the order processing page will be used for the sole purpose of sending you information and updates pertaining to your order. If, however, you have provided the same email to us through another method, we may use it for any of the purposes stated in this Policy. Note: If at any time you would like to unsubscribe from receiving future emails, we include detailed unsubscribe instructions at the bottom of each email.
Is the information collected through our service secure?
We take precautions to protect the security of your information. We have physical, electronic, and managerial procedures to help safeguard, prevent unauthorized access, maintain data security, and correctly use your information. However, neither people nor security systems are foolproof, including encryption systems. In addition, people can commit intentional crimes, make mistakes or fail to follow policies. Therefore, while we use reasonable efforts to protect your personal information, we cannot guarantee its absolute security. If applicable law imposes any non-disclaimable duty to protect your personal information, you agree that intentional misconduct will be the standard used to measure our compliance with that duty.
Personnel
If you are one of our workers or applicants, we collect the information you voluntarily provide to us. We use the information collected for Human Resources purposes in order to administer benefits to workers and screen applicants. You may contact us in order to (1) update or correct your information, (2) change your preferences with respect to communications and other information you receive from us, or (3) receive a record of the information we have relating to you. Such updates, corrections, changes and deletions will have no effect on other information that we maintain or information that we have provided to third parties in accordance with this Privacy Policy prior to such update, correction, change or deletion
Sale of Business
We reserve the right to transfer information to a third party in the event of a sale, merger or other transfer of all or substantially all of the assets of us or any of its Corporate Affiliates (as defined herein), or that portion of us or any of its Corporate Affiliates to which the Service relates, or in the event that we discontinue our business or file a petition or have filed against us a petition in bankruptcy. reorganization or similar proceeding provided that the third party agrees to adhere to the terms of this Privacy Policy.
Affiliates
We may disclose information (including personal information) about you to our Corporate Affiliates. For purposes of this Privacy Policy, “Corporate Affiliate” means any person or entity which directly or indirectly controls, is controlled by or is under common control with us, whether by ownership or otherwise. Any information relating to you that we provide to our Corporate Affiliates will be treated by those Corporate Affiliates in accordance with the terms of this Privacy Policy.
How Long Do We Keep Your Information?
We keep your information only so long as we need it to provide service to you and fulfil the purposes described in this policy. This is also the case for anyone that we share your information with and who carries out services on our behalf. When we no longer need to use your information and there is no need for us to keep it to comply with our legal or regulatory obligations, we’ll either remove it from our systems or depersonalize it so that we can’t identify you.
How Do We Protect Your Information?
We implement a variety of security measures to maintain the safety of your personal information when you place an order or enter, submit, or access your personal information. We offer the use of a secure server. All supplied sensitive/credit information is transmitted via Secure Socket Layer (SSL) technology and then encrypted into our Payment gateway providers database only to be accessible by those authorized with special access rights to such systems, and are required to keep the information confidential. After a transaction, your private information (credit cards, social security numbers, financials, etc.) is never kept on file. We cannot, however, ensure or warrant the absolute security of any information you transmit to us or guarantee that your information on the Service may not be accessed, disclosed, altered, or destroyed by a breach of any of our physical, technical, or managerial safeguards.
Governing Law
The laws of India, excluding its conflicts of law rules, shall govern this Agreement and your use of our service. Your use of our service may also be subject to other local, state, national, or international laws.
Your Consent
By using our service, registering an account, or making a purchase, you consent to this Privacy Policy.
Cookies
We use “Cookies” to identify the areas of our website that you have visited. A cookie is a small piece of data stored on your computer or mobile device by your web browser. We use Cookies to personalize the Content that you see on our website. Most web browsers can be set to disable the use of Cookies. However, if you disable Cookies, you may not be able to access functionality on our website correctly or at all. We never place Personally Identifiable Information in Cookies.
Write to us or submit your details, and we’ll get back to you.