CleanMate - Cleaning Theme

CleanMate is a responsive and retina ready WordPress Theme best suitable for cleaning companies, maid services, loundries, car cleaning services, maintenance service companies, window cleaning businesses, post renovation services and move in out services. The Theme comes with Online Calculator Form, Page Builder plugin, Slider Revolution plugin, 94 premium cleaning services related font based icons, 24 page templates, sticky menu, 2 header types, touch friendly slider and carousels, ajax contact form and more.

PSD source files are available to all of our buyers. Please contact us to get the files. You will receive perfectly organized and layered Template plus all of the icons used within a project in full PSD vector.

Theme Features

  • Responsive Layout
  • jQuery Powered
  • Full Width and Boxed Page Layouts
  • Online Calculator Form
  • Cost Calculator For WordPress (Value of $30) Included
  • Slider Revolution Responsive WordPress Plugin (Value of $85) Included
  • WPBakery Page Builder for WordPress (Value of $64) Included
  • 50+ Page Builder Components Including 25+ Custom Made
  • Streamline Premium Icon Font with 94 Icons (Value of $69) Included
  • One Click Demo Content Importer
  • Theme Options Panel
  • WooCommerce Integration
  • Smart Sticky Columns
  • Theme Color Picker
  • Sticky Menu
  • 2 Header Types
  • Mobile Touch Friendly Sliders and Carousels
  • Ajax Contact Form
  • Isotope Gallery
  • Parallax Backgrounds
  • Google Location Map
  • 800+ Google Fonts to Choose From
  • WPML Compatible. Translation Ready With Mo/Po Files
  • Unlimited Menus & Sidebars
  • Page Templates
    • Home Style 1
    • Home Style 2
    • About Us Style 1
    • About Us Style 2
    • Services Style 1
    • Services Style 2
    • Single Service Page
    • Projects
    • Single Project Page
    • Our Team
    • Single Team Member
    • Testimonials
    • Cleaning Checklist
    • Calculator
    • Blog With Right Sidebar
    • Blog With Left Sidebar
    • Blog Small Image
    • Blog 2 Columns
    • Blog 3 Columns
    • Single Post
    • Search Template
    • Contact Style 1
    • Contact Style 2
    • Contact Style 3
    • 404 Not Found
  • Social Icons Font with 33 Icons to Choose From
  • PSD Files Included (Please Contact Us to Receive Perfectly Organized PSD Files)
  • Documentation Included
  • Retina Ready
  • Valid HTML5 Code
  • Crossbrowser Compatible
  • Clean Design

Instructional Videos


Need HTML (non - WordPress) version?

There is also HTML version of this theme available. You can find it here: CleanMate - Cleaning Template

Getting Started

1. Downloading theme archive

To install CleanMate on your WordPress website, you need to download the theme archive file from your Downloads section on ThemeForest. Downloaded archive will look like this 'themeforest-20981913-cleanmate-cleaning-company-maid-gardening-wordpress-theme'. Please unzip this file and inside you will find 'cleanmate.zip' archive (screenshot) which contains all theme files necessary to install the theme.



2. Theme installation

Please login to your WP dashboard and go to 'Appearance->Themes' panel, over there you can use the 'Add New Theme' option to install new themes. Click on 'Upload Theme' button located at the top left corner of the screen (near the 'Add Themes' page title, screenshot) and select the 'cleanmate.zip' file from your computer, now use the 'Install Now' button and if everything goes right, you should notice 'Theme installed successfully' message (screenshot), after that you can activate the theme.



3. Plugins installation

Once the theme is active, you need to install required plugins, you can do that in 'Appearance->Install Plugins' panel. After installation please activate plugins if necessary (screenshot).



4. Dummy data import

The last thing is to import the dummy data, this will create sample content and configure your WordPress settings, making your website look exactly as in our preview version. This step is optional, you don't need to install dummy content if you don't need it but it will help you to see how content has been configured on demo site, you can also take it as a base for your customized website. To do this, please go to 'Appearance->Theme Options' panel and click on 'Import dummy content' button, please remember that this can take some time, so you should wait until the confirmation message is displayed (screenshot). After that, your website will be ready and now you can start adding your own content or customize the theme. All steps from the dummy content process can be viewed on this instructional video.

How To?

1. How to install CleanMate theme?

Please read our Getting Started guide, it presents step-by-step instructions on how to install the theme. Alternatively you can install theme manually. In that case please connect with your FTP account using FTP client like FileZilla and now upload the unpacked theme directory to the 'wp-content/themes/' subdirectory, after that, you can activate it in Themes panel of WP dashboard.



2. What is the correct way to update the theme?

To update the theme you need to download its latest version from ThemeForest downloads page. Now there are two ways to update the theme, if you don't have any custom modifications then you can simply remove the old theme version from admin panel and install new one on 'Appearance->Themes' page. Otherwise, if you want to keep some theme files, which were modified, then you need to update it manually. Please unpack the downloaded theme archive, login to your FTP account using FTP client (e.g. FileZilla) and replace the current theme files by uploading the newest ones. If your theme has custom modifications then you can upload only those files which were changed in theme update, you can check those files in the documentation that's included in theme directory(Changelog section). This way you can keep most(or even all) of your modifications after the update.



3. How can I update the WPBakery Page Builder plugin?

Firstly you must update your theme to the latest version, which includes new version of WPBakery Page Builder plugin.
Now if you use WordPress MultiSite installation, then just go to 'Network->Plugins' panel and delete the 'WPBakery Page Builder' plugin. Login once again to your website dashboard and you will be asked to install the VC plugin, follow the instructions and the update will be complete.
For standard WordPress installation, please login to your FTP account and go to 'wp-content/plugins/' subdirectory and delete entire 'js_composer/' folder, after that visit your WordPress dashboard. You should notice new message at the top of a screen, that asks you to install the required plugin, follow the instructions and the WPBakery Page Builder plugin will be installed.



4. How can I setup a Child Theme?

To setup a child theme please first install the theme and import dummy data, instructions can be found here. Now you need to create a new folder in '/wp-content/themes/' subdirectory, you can name it 'cleanmate-child' and then add two files: style.css and functions.php. In 'style.css' file please use below code:

/*
Theme Name:   CleanMate Child
Description:  CleanMate Child Theme
Template:     cleanmate
Version:      1.0
Text Domain:  cleanmate
*/

above code includes basic details about your child theme, you can edit above information as you like. For the second file 'functions.php' please use this code:
<?php
function child_theme_enqueue_styles() {
	wp_enqueue_style("parent-style", get_template_directory_uri() . "/style.css", array("reset", "superfish", "prettyPhoto", "jquery-qtip", "odometer", "animations"));
}
add_action("wp_enqueue_scripts", "child_theme_enqueue_styles");

above code loads the styles of parent cleanmate theme. Now in your WP dashboard go to Themes panel and activate the 'Finpeak Child' theme, you will also need to activate the WPBakery Page Builder plugin and it is possible that WordPress will deactivate widgets and main menu, so you will need to re-assign them in Widgets and Menus panel. After that your child theme should be working correctly. More details about Child Themes can be found here: https://codex.wordpress.org/Child_Themes



5. How can I translate the theme?

Theme supports translations. To create your language translation, please download this usefull tool Poedit. Then find in languages directory cleanmate.po file and open it in Poedit. Translate appropriate texts and save the file giving it appropriate name (check here for more). For example French: fr_FR, German: de_DE, etc.
The last step is setting the language in wp-config.php file. Please open it and find (or add if it doesn't exists) below line:

define ('WPLANG', '');
Then set your language, for example French:
define ('WPLANG', 'fr_FR');



6. How can I control the single post layout?

If you have imported dummy content you should see 'Single Post Template' page under 'Pages' admin menu. Please edit it using WPBakery Page Builder editor to control single post layout.

If you haven't imported dummy content you can create this template from scratch. To do that please add new page: 'Pages->Add New'. Name it 'Single Post Template' and select 'Single post' template for it under 'Page Attributes' box (screenshot). After that please switch content editor to WPBakery Page Builder by clicking 'Backend Editor' button and click on 'Templates' button (screenshot). The templates popup will be displayed, please select 'Default templates' tab from it (screenshot). Find 'Single Post Template' on the list and click on it (screenshot). Close the 'Templates' window. Template is ready, please publish it (screenshot) and from now you can edit it to control single post layout.



7. How can I control the blog layout?

If you have imported dummy content you should see 'Blog Template' page under 'Pages' admin menu. Please edit it using WPBakery Page Builder editor to control blog layout.

If you haven't imported dummy content you can create this template from scratch. To do that please follow the instructions from point 6 (How can I control the single post layout?) but name the page 'Blog Template' and select 'Blog' template for it under 'Page Attributes' box (screenshot). Please also use the 'Blog Template' as base for it (screenshot).



8. How can I control the search results page layout?

If you have imported dummy content you should see 'Search Page Template' page under 'Pages' admin menu. Please edit it using WPBakery Page Builder editor to control search results page layout.

If you haven't imported dummy content you can create this template from scratch. To do that please follow the instructions from point 6 (How can I control the single post layout?) but name the page 'Search Page Template' and select 'Search' template for it under 'Page Attributes' box (screenshot). Please also use the 'Search Page Template' as base for it (screenshot).



9. How can I control the single project page layout?

If you have imported dummy content you should see 'Single Project Template' page under 'Pages' admin menu. Please edit it using WPBakery Page Builder editor to control single project page layout.

If you haven't imported dummy content you can create this template from scratch. To do that please follow the instructions from point 6 (How can I control the single post layout?) but name the page 'Single Project Template' and select 'Project' template for it under 'Page Attributes' box (screenshot). Please also use the 'Single Project Template' as base for it (screenshot).



10. How can I control the single service page layout?

If you have imported dummy content you should see 'Single Service Template' page under 'Pages' admin menu. Please edit it using WPBakery Page Builder editor to control single service page layout.

If you haven't imported dummy content you can create this template from scratch. To do that please follow the instructions from point 6 (How can I control the single post layout?) but name the page 'Single Service Template' and select 'Service' template for it under 'Page Attributes' box (screenshot). Please also use the 'Single Service Template' as base for it (screenshot).



11. How can I control the single team member page layout?

If you have imported dummy content you should see 'Single Team Member Template' page under 'Pages' admin menu. Please edit it using WPBakery Page Builder editor to control single team member page layout.

If you haven't imported dummy content you can create this template from scratch. To do that please follow the instructions from point 6 (How can I control the single post layout?) but name the page 'Single Team Member Template' and select 'Team Member' template for it under 'Page Attributes' box (screenshot). Please also use the 'Single Team Member Template' as base for it (screenshot).



12. How to integrate WooCommerce (shop) plugin?

Please check this instructional video to see how to setup Shop.



13. How to control Theme Options?

Please check this instructional video to see how to control Theme Options.

CSS Styles

The project uses the following cascade of template styles (in order):

  • animations.css - styles for animated elements,
  • jquery.qtip.css - default styles for tooltips (overwritten in style.css),
  • superfish.css - default styles for superfish menu,
  • odometer-theme-default.css - styles for Odometer smoothly transitioning numbers plugin,
  • prettyPhoto.css - default styles for prettyPhoto lightbox,
  • style.css - base styles for the entire project,
  • responsive.css - styles for responsive design (remove it from header to disable responsive),
  • reset.css - styles which resets default browsers styles.

All CSS files are located under /style directory.



Javascript Files

Plugins and library


Other files:

  • jquery.costCalculator.js - script which supports online calculator form,
  • jquery.parallax.js - script which supports parallax animations,
  • jquery.hint.js - script which supports hints/placeholders for form fields,
  • main.js - script contains all executable instructions of jquery plugins, events handlers etc.

Theme Structure

Project is divided by four main files: index.php, header.php, footer.php and functions.php


index.php

It's main project file which calls other. It contains get_header and get_footer calls.


header.php

The file contains head section of the html tree structure. You can find here also wp_head call.


footer.php

The file contains bottom part of the page, including copyright area and footer area. You can find here also wp_footer call.


functions.php

The file contains definition/includes of the functions for:

  • widgets,
  • shortcodes,
  • sidebars,
  • ajax calls,
  • load javascript and css files,
  • base configuration,
  • menu generation,
  • custom meta box and options pages.

WPBakery Page Builder

WPBakery Page Builder documentation is available here.

Widgets

There are 8 build in widgets:

  • Cart Icon,
  • Contact Details Box,
  • Contact Details List,
  • Contact Informations Box,
  • Bulleted List,
  • CleanMate Recent Posts,
  • CleanMate Search,
  • Social Icons.

Credits

Fonts used


Images

Premium images used for live preview purpose (not included in downloadable package):

03 February 2023, ver. 4.7

  • Fix for demo content import error.
  • Revolution Slider update (to version 6.6.10).
  • Cost Calculator plugin update (to version 5.0).
  • Theme Dummy Content Importer plugin update (to version 1.9).
  • Theme Projects plugin update (to version 1.3).
  • Theme Services plugin update (to version 3.0).
  • Theme Team plugin update (to version 2.0).
  • WooCommerce template files update.
  • Minor code fixes.
404.php
functions.php
header.php
plugins_activator.php
search.php
single.php
single-ql_projects.php
single-ql_services.php
single-ql_team.php
template-blog.php
theme-options.php
admin/js/theme_admin.js
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/ql_importer.zip
plugins/ql_projects.zip
plugins/ql_services.zip
plugins/ql_team.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
style_selector/style_selector.js
woocommerce/cart/cart.php
woocommerce/cart/cart-empty.php
woocommerce/cart/cart-shipping.php
woocommerce/cart/shipping-calculator.php
woocommerce/checkout/form-pay.php
woocommerce/global/quantity-input.php
woocommerce/myaccount/form-edit-account.php
woocommerce/myaccount/form-edit-address.php
woocommerce/myaccount/form-login.php
woocommerce/myaccount/form-lost-password.php

24 October 2022, ver. 4.6

  • WPBakery Page Builder update (to version 6.10).
  • Revolution Slider update (to version 6.6.5).
  • Minor code improvements.
custom_colors.php
plugins_activator.php
style.css
template-blog.php
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/revslider.zip
shortcodes/blog.php
shortcodes/blog_2_columns.php
shortcodes/blog_3_columns.php
shortcodes/blog_small.php
shortcodes/blog_small_image.php
shortcodes/post_carousel.php
woocommerce/myaccount/form-login.php

19 August 2022, ver. 4.5

  • Revolution Slider update (to version 6.5.31).
  • Cost Calculator plugin update (to version 4.1).
  • Minor code fixes.
search.php
single.php
single-ql_projects.php
single-ql_services.php
single-ql_team.php
style.css
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/ql-cost-calculator.zip
plugins/revslider.zip
shortcodes/blog_small.php

09 July 2022, ver. 4.4

  • WPBakery Page Builder update (to version 6.9).
  • Revolution Slider update (to version 6.5.25).
  • Cost Calculator plugin update (to version 4.0).
  • Theme Team plugin update (to version 1.5).
  • Theme Dummy Content Importer plugin update (to version 1.8).
  • Minor code fixes.
plugins_activator.php
style.css
admin/style/style.css
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/ql_importer.zip
plugins/ql_team.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
widgets/widget-contact-details-list.php
widgets/widget-list.php

10 February 2022, ver. 4.3

  • Issue fix: WPBakery Page Builder wasn't enabled by default for custom posts.
functions.php

01 February 2022, ver. 4.2

  • WPBakery Page Builder update (to version 6.8).
  • Revolution Slider update (to version 6.5.15).
  • Cost Calculator plugin update (to version 3.9).
  • WooCommerce template files update.
  • Minor code fixes.
style.css
theme-options.php
admin/js/theme_admin_widgets.js
dummy_content_files/home.zip
dummy_content_files/home-2.zip
plugins/js_composer.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
shortcodes/blog.php
shortcodes/blog_2_columns.php
shortcodes/blog_3_columns.php
shortcodes/blog_small.php
shortcodes/blog_small_image.php
shortcodes/post_carousel.php
woocommerce/order/order-details-customer.php

16 June 2021, ver. 4.1

  • Revolution Slider update (to version 6.5.1).
  • Cost Calculator plugin update (to version 3.8).
  • New 'Send From' option added under email config.
comments.php
contact_form.php
functions.php
pagination.php
plugins_activator.php
theme-options.php
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/ql-cost-calculator.zip
plugins/revslider.zip

01 June 2021, ver. 4.0

  • WPBakery Page Builder update (to version 6.6).
  • Revolution Slider update (to version 6.4.11).
  • Theme Dummy Content Importer plugin update (to version 1.7).
  • Theme Services plugin update (to version 2.0).
  • WooCommerce template files update.
comments-functions.php
contact_form.php
functions.php
plugins_activator.php
theme-options.php
dummy_content_files/home.zip
dummy_content_files/widget_data.json
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/ql_importer.zip
plugins/ql_services.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
shortcodes/shortcodes.php
style_selector/style_selector.js
widgets/widget-contact-details.php
widgets/widget-contact-details-list.php
widgets/widget-list.php
widgets/widget-social-icons.php
woocommerce/checkout/form-pay.php

24 December 2020, ver. 3.9

  • WPBakery Page Builder update (to version 6.5.1).
  • Fix for not working Tabs component issue.
plugins_activator.php
admin/style/style.css
plugins/js_composer.zip

18 December 2020, ver. 3.8

  • Compatibility with WordPress 5.6 added.
  • WPBakery Page Builder update (to version 6.5).
  • Revolution Slider update (to version 6.3.3).
  • Cost Calculator plugin update (to version 3.7).
  • Fix for not working reCaptcha issue.
  • WooCommerce template files update.
functions.php
plugins_activator.php
plugins/js_composer.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
woocommerce/order/order-details.php
--- new files ---
js/jquery.easing.1.4.1.js
js/jquery.easing.1.4.1.min.js
--- removed files ---
js/jquery.easing.1.3.js
js/jquery.easing.1.3.min.js

14 October 2020, ver. 3.7

  • WPBakery Page Builder update (to version 6.4.1).
  • Revolution Slider update (to version 6.2.23).
  • Minor code fixes.
plugins_activator.php
plugins/js_composer.zip
plugins/revslider.zip
widgets/widget-contact-details.php
widgets/widget-social-icons.php

09 September 2020, ver. 3.6

  • Update for image preloader.
  • WPBakery Page Builder update (to version 6.3).
  • Revolution Slider update (to version 6.2.22).
  • Cost Calculator plugin update (to version 3.6).
  • WooCommerce template files update.
plugins_activator.php
js/main.js
plugins/js_composer.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
woocommerce/single-product-reviews.php
woocommerce/cart/cross-sells.php

14 August 2020, ver. 3.5

  • Compatibility with WordPress 5.5 added.
  • Revolution Slider update (to version 6.2.18).
  • Cost Calculator plugin update (to version 3.5).
  • WooCommerce template files update.
  • Minor code fixes.
functions.php
plugins_activator.php
style.css
admin/js/jquery.ba-bbq.min.js
admin/style/style.css
js/jquery.ba-bbq.min.js
js/jquery.qtip.min.js
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/ql-cost-calculator.zip
plugins/revslider.zip
style/jquery.qtip.css
style/responsive.css
woocommerce/single-product-reviews.php

03 July 2020, ver. 3.4

  • Revolution Slider update (to version 6.2.15).
  • Cost Calculator plugin update (to version 3.4).
  • CleanMate Child Theme update.
  • Minor code fixes.
style.css
admin/js/jquery.ba-bbq.min.js
admin/js/theme_admin.js
js/jquery.ba-bbq.min.js
plugins/ql-cost-calculator.zip
plugins/revslider.zip

21 May 2020, ver. 3.3

  • WPBakery Page Builder update (to version 6.2).
  • Revolution Slider update (to version 6.2.9).
  • Cost Calculator plugin update (to version 3.3).
  • WooCommerce template files update.
  • Minor code fixes.
functions.php
plugins_activator.php
style.css
dummy_content_files/dummy-data.xml.gz
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
shortcodes/our_clients_carousel.php
vc_templates/vc_column.php
vc_templates/vc_column_inner.php
woocommerce/style.css
woocommerce/myaccount/form-login.php

31 March 2020, ver. 3.2

  • Theme Projects plugin update (to version 1.2).
  • Minor code fixes.
functions.php
plugins_activator.php
style.css
admin/style/style.css
dummy_content_files/home.zip
dummy_content_files/home-2.zip
js/jquery.prettyPhoto.js
js/main.js
plugins/ql_projects.zip
style/responsive.css
--- new files ---
js/jquery.imagesloaded-packed.js
js/jquery.isotope-packed.js
--- removed files ---
js/jquery.isotope.min.js

13 March 2020, ver. 3.1

  • WPBakery Page Builder update (to version 6.1).
  • Revolution Slider update (to version 6.2.2).
  • Cost Calculator plugin update (to version 3.1).
  • Theme Dummy Content Importer plugin update (to version 1.6).
  • Theme Services plugin update (to version 1.9).
  • WooCommerce template files update.
  • Code fixes and improvements.
class-tgm-plugin-activation.php
comments-functions.php
custom_colors.php
functions.php
plugins_activator.php
rtl.css
style.css
theme-options.php
admin/js/theme_admin.js
admin/style/style.css
dummy_content_files/home.zip
dummy_content_files/home-2.zip
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/cleanmate_shortcodes.zip
plugins/js_composer.zip
plugins/ql_importer.zip
plugins/ql_projects.zip
plugins/ql_services.zip
plugins/ql_sidebars.zip
plugins/ql_team.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
style/responsive.css
vc_templates/vc_progress_bar.php
widgets/widget-social-icons.php
woocommerce/responsive.css
woocommerce/cart/cart.php
woocommerce/cart/shipping-calculator.php
woocommerce/checkout/thankyou.php
woocommerce/global/quantity-input.php
woocommerce/order/order-details.php
woocommerce/single-porduct/related.php

05 June 2019, ver. 3.0

  • WPBakery Page Builder update (to version 6.0.4).
plugins_activator.php
plugins/js_composer.zip

03 June 2019, ver. 2.9

  • WPBakery Page Builder update (to version 6.0.3).
plugins_activator.php
plugins/js_composer.zip

22 May 2019, ver. 2.8

  • WPBakery Page Builder update (to version 6.0.2).
  • Minor code fixes.
admin/js/theme_admin.js
js/main.js
plugins_activator.php
plugins/js_composer.zip
style_selector/style_selector.js
widgets/widget-contact-details.php
woocommerce/global/quantity-input.php

16 May 2019, ver. 2.7

  • WPBakery Page Builder update (to version 6.0.1).
  • Theme Team plugin update (to version 1.4).
  • Minor code fixes.
plugins_activator.php
admin/js/theme_admin.js
fonts/social/demo.html
fonts/social/selection.json
fonts/social/styles.css
fonts/social/fonts/social.eot
fonts/social/fonts/social.svg
fonts/social/fonts/social.ttf
fonts/social/fonts/social.woff
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/ql_team.zip
shortcodes/contact_details_box.php
shortcodes/shortcodes.php
shortcodes/team_member_box.php
vc_templates/vc_tab.php
widgets/widget-contact-details.php
widgets/widget-social-icons.php

10 May 2019, ver. 2.6

  • Security improvements.
  • WooCommerce template files update.
  • Cost Calculator plugin update (to version 3.0).
  • WPBakery Page Builder update (to version 5.7).
  • Revolution Slider update (to version 5.4.8.3).
  • CleanMate Theme Shortcodes plugin update (to version 1.2).
  • Theme Dummy Content Importer plugin update (to version 1.5).
  • Css styles improvements.
  • Minor code improvements.
404.php
comments.php
comments-form.php
contact_form.php
functions.php
header.php
meta-box.php
page.php
pagination.php
plugins_activator.php
rtl.css
search.php
searchform.php
single.php
style.css
template-empty.php
theme-options.php
woocommerce.php
functions.php
admin/js/theme_admin.js
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/cleanmate_shortcodes.zip
plugins/js_composer.zip
plugins/ql_importer.zip
plugins/ql_projects.zip
plugins/ql_sidebars.zip
plugins/ql_team.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
shortcodes/blog.php
shortcodes/blog_2_columns.php
shortcodes/blog_3_columns.php
shortcodes/blog_small_image.php
shortcodes/our_clients_carousel.php
shortcodes/post_carousel.php
shortcodes/single-post.php
shortcodes/team_member_box.php
shortcodes/testimonials.php
shortcodes/timeline_item.php
shortcodes/class/Post.php
style/responsive.css
style_selector/style_selector.php
vc_templates/vc_accordion.php
vc_templates/vc_accordion_tab.php
vc_templates/vc_column.php
vc_templates/vc_nested_accordion.php
vc_templates/vc_nested_accordion_tab.php
vc_templates/vc_nested_tab.php
vc_templates/vc_nested_tabs.php
vc_templates/vc_progress_bar.php
vc_templates/vc_tab.php
vc_templates/vc_tabs.php
widgets/widget-search.php
woocommerce/rtl.css
woocommerce/single-product-reviews.php
woocommerce/style.css
woocommerce/cart/cart-shipping.php
woocommerce/checkout/form-billing.php
woocommerce/checkout/form-shipping.php
woocommerce/global/quantity-input.php
woocommerce/myaccount/form-edit-address.php
woocommerce/myaccount/form-login.php

29 January 2019, ver. 2.5

  • Cost Calculator plugin update (to version 2.8).
  • Minor code improvements.
class-tgm-plugin-activation.php
comments-form.php
comments-functions.php
contact_form.php
functions.php
page.php
plugins_activator.php
single-ql_projects.php
single-ql_services.php
single-ql_team.php
style.css
woocommerce.php
admin/functions.php
admin/style/style.css
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/ql-cost-calculator.zip

22 January 2019, ver. 2.4

  • Cost Calculator plugin update (to version 2.7).
  • Styling improvements for Gutenberg blocks.
custom_colors.php
functions.php
page.php
plugins_activator.php
rtl.css
style.css
admin/functions.php
admin/style/style.css
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/ql-cost-calculator.zip
style/responsive.css

03 January 2019, ver. 2.3

  • Fix for widgets import issue under WP 5.0.
  • Theme Dummy Content Importer plugin update (to version 1.2).
  • Cost Calculator plugin update (to version 2.6).
plugins_activator.php
plugins/ql_importer.zip
plugins/ql-cost-calculator.zip
--- new directories ---
dummy_content_files/

13 December 2018, ver. 2.2

  • Fix for tabs display issue on Projects page.
rtl.css
style.css
responsive.css
woocommerce/myaccount/form-lost-password.php

07 December 2018, ver. 2.1

  • WPBakery Page Builder update (to version 5.6).
  • Revolution Slider update (to version 5.4.8.1).
  • WooCommerce template files update.
  • Minor code fixes.
comments-functions.php
contact_form.php
plugins_activator.php
plugins/js_composer.zip
plugins/revslider.zip
style/responsive.css
widgets/widget-contact-details.php
widgets/widget-contact-details-list.php
widgets/widget-list.php
widgets/widget-social-icons.php
woocommerce/myaccount/form-lost-password.php
woocommerce/order/order-details.php

24 November 2018, ver. 2.0

  • Cost Calculator plugin update (to version 2.5).
plugins/ql-cost-calculator.zip
plugins_activator.php

06 November 2018, ver. 1.9

  • Cost Calculator plugin update (to version 2.1).
  • WPBakery Page Builder update (to version 5.5.5).
  • Theme Services plugin update (to version 1.8).
  • WooCommerce template files update.
  • Minor code fixes.
custom_colors.php
functions.php
plugins_activator.php
rtl.css
style.css
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/ql_services.zip
plugins/ql-cost-calculator.zip
shortcodes/our_clients_carousel.php
shortcodes/shortcodes.php
style/responsive.css
woocommerce/single-product-reviews.php
woocommerce/cart/cart.php
woocommerce/cart/cart-empty.php
woocommerce/cart/cart-shipping.php
woocommerce/cart/shipping-calculator.php
woocommerce/checkout/form-checkout.php
woocommerce/myaccount/form-edit-account.php
woocommerce/myaccount/form-login.php
woocommerce/myaccount/my-account.php
woocommerce/order/order-details-customer.php

19 July 2018, ver. 1.8

  • Cost Calculator plugin update (to version 1.8).
  • WPBakery Page Builder update (to version 5.5.2).
  • Revolution Slider update (to version 5.4.8).
  • Theme Services plugin update (to version 1.7).
  • Minor code fixes.
plugins_activator.php
rtl.css
style.css
admin/js/theme_admin.js
plugins/js_composer.zip
plugins/ql_services.zip
plugins/ql-cost-calculator.zip
plugins/revslider.zip
style/responsive.css

21 June 2018, ver. 1.7

  • Cost Calculator plugin update (to version 1.7).
  • Minor code fixes.
comments-form.php
plugins_activator.php
rtl.css
style.css
js/main.js
plugins/ql-cost-calculator.zip
woocommerce/global/quantity-input.php

13 June 2018, ver. 1.6

  • Fix for Warning: array_flip() issue in Cost Calculator plugin.
  • Cost Calculator plugin update (to version 1.6).
plugins_activator.php
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/ql-cost-calculator.zip

09 June 2018, ver. 1.5

  • Option to enable reCaptcha in the contact form and comment form added.
  • Option to enable terms and conditions checkbox in the contact form and comment form added.
  • Cost Calculator plugin update (to version 1.5).
  • Revolution Slider update (to version 5.4.7.3).
  • Theme Projects plugin update (to version 1.1).
  • Theme Services plugin update (to version 1.6).
  • Theme Team plugin update (to version 1.3).
  • WooCommerce template files update.
  • New template added - Empty template.
  • Minor code fixes.
comments-form.php
comments-functions.php
contact_form.php
custom_colors.php
functions.php
plugins_activator.php
rtl.css
style.css
theme-options.php
admin/functions.php
admin/js/theme_admin.js
admin/style/style.css
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/ql_projects.zip
plugins/ql_services.zip
plugins/ql_team.zip
plugins/revslider.zip
shortcodes/comments.php
shortcodes/map.php
style/responsive.css
woocommerce/cart/cart.php
woocommerce/cart/cart-totals.php
woocommerce/cart/shipping-calculator.php
woocommerce/checkout/form-pay.php
woocommerce/global/quantity-input.php
woocommerce/myaccount/form-edit-account.php
woocommerce/myaccount/form-edit-address.php
woocommerce/myaccount/form-login.php
woocommerce/myaccount/form-lost-password.php
--- new files ---
template-empty.php
plugins/ql-cost-calculator.zip
--- removed files ---
plugins/cost-calculator.zip

23 April 2018, ver. 1.4

  • New features for Cost Calculator tool (now in a form of a plugin).
  • WPBakery Page Builder update (to version 5.4.7).
  • Revolution Slider update (to version 5.4.7.2).
  • WooCommerce template files update.
  • Fix for conflict with Yoast SEO plugin when saving template pages.
  • Minor code fixes.
custom_colors.php
footer.php
functions.php
plugins_activator.php
rtl.css
style.css
admin/style/style.css
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/revslider.zip
shortcodes/shortcodes.php
shortcodes/single-post.php
shortcodes/single-project.php
shortcodes/single-service.php
shortcodes/single-team.php
style/responsive.css
vc_templates/vc_column.php
vc_templates/vc_column_inner.php
vc_templates/vc_row.php
vc_templates/vc_row_inner.php
widgets/widget-cart-icon.php
widgets/widget-contact-details.php
widgets/widget-contact-details-list.php
widgets/widget-contact-info.php
widgets/widget-list.php
widgets/widget-recent.php
widgets/widget-search.php
widgets/widget-social-icons.php
woocommerce/responsive.css
woocommerce/rtl.css
woocommerce/style.css
woocommerce/cart/cart.php
woocommerce/cart/shipping-calculator.php
woocommerce/checkout/form-pay.php
woocommerce/global/quantity-input.php
woocommerce/myaccount/form-edit-account.php
woocommerce/myaccount/form-edit-address.php
woocommerce/myaccount/form-login.php
woocommerce/myaccount/form-lost-password.php
woocommerce/myaccount/navigation.php
woocommerce/order/order-details.php
woocommerce/order/order-details-customer.php
woocommerce/single-product/short-description.php
--- new files ---
plugins/cost-calculator.zip
--- removed files ---
js/jquery.costCalculator.js
js/jquery.costCalculator.min.js
shortcodes/cost_calculator_contact_box.php
shortcodes/cost_calculator_dropdown_box.php
shortcodes/cost_calculator_input_box.php
shortcodes/cost_calculator_slider_box.php
shortcodes/cost_calculator_summary_box.php
shortcodes/cost_calculator_switch_box.php
--- removed directories ---
vc_extend/

04 January 2018, ver. 1.3

  • Fix for Fatal error in header.php file for old PHP versions.
header.php

23 December 2017, ver. 1.2

  • Revolution Slider update (to version 5.4.6.4).
  • Theme Dummy Content Importer update (to version 1.1).
  • Fix for Fatal error in header.php file for old PHP versions.
  • Minor code fixes.
functions.php
header.php
style.css
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/ql_importer.zip
plugins/revslider.zip

29 November 2017, ver. 1.1

  • WPBakery Page Builder update (to version 5.4.5).
  • Fix for 'Hide on mobiles' sidebars setting.
  • Color settings fix for WooCommerce pages.
  • Minor code fixes.
custom_colors.php
functions.php
header.php
rtl.css
style.css
js/main.js
languages/cleanmate.mo
languages/cleanmate.po
languages/cleanmate.pot
plugins/js_composer.zip
plugins/ql_services.zip
style/responsive.css
widgets/widget-contact-details.php
widgets/widget-contact-details-list.php
widgets/widget-contact-info.php
widgets/widget-list.php
widgets/widget-recent.php
widgets/widget-social-icons.php
woocommerce/style.css

21 November 2017, ver. 1.0

  • First release

Support

Support for all our items is conducted through our Support Forum.
Please register an account and search the forum or create a new topic, we'll answer as soon as possible.

We're in GMT +1 and we aim to answer all questions within 24 hours (Monday – Friday). In some cases the waiting time can be extended to 48 hours.
Support requests sent during weekends or public holidays will be processed on next Monday or the next business day.


Need HTML (non - WordPress) version?

There is also HTML version of this theme available. You can find it here: CleanMate - Cleaning Template