12192 comments found.
Hi! I can not find components called dialogue something similar to bootbox for confirmation message etc, can you please show me link for the same? Thanks!
Hello, can it be used for a multivendor Marketplace?
Hi,
Sure, you can use Metronic for any web app or site. However if you have paying users who you charge for accessing or using your service you will need to purchase the Extended license. If you are doing an eCommerce site then you can go with regular license. For resellable product you will need a separate license for each copy you sell.
If you need any further help please reach our support team via devs.keenthemes.com
Regards, Sean
hi! is there any recommended way to integrate the Metronic templates styling and components into a separate React project by taking the templates components, and adding them to your project, rather than building your project upon the template? I have tried to do so, however it resulted in a lot of errors, so I was wondering if there is a recommended way to do this, if users simply need components from the template rather than the whole system itself. thank you in advance! 
Hi,
Thank you for reaching out to us.
To use most of our React components you need to include the following style files.
Main style file:
import './_metronic/assets/sass/style.scss'
Keenicon set styles:
import './_metronic/assets/keenicons/duotone/style.css' import './_metronic/assets/keenicons/outline/style.css' import './_metronic/assets/keenicons/solid/style.css'
To use our TypeScript components, wrap your app with the initialization component src/_metronic/layout/MasterInit.tsx.
For layout components, wrap your app with src/_metronic/layout/core/_LayoutProvider.tsx.
Additionally, ensure that you are using the same TypeScript configuration.
Regards,
Lauris Stepanovs,
Keenthemes Support Team
Thank you very much for your reply! I tried implementing the suggested steps, however, understandably, because there are a lot of dependencies in the project, there were too many errors to deal with. for my project I need about 10%-20% of Metronic’s functionality, but separating that functionality from the Metronic is troublesome. On the other hand, if it is not separated, there will be a big chunk of unused functionality which disregards clean code principles, and might overload the servers hosting the project. as the creator of this template, would you recommend trying to separate that 10%-20% of functionality, because it will be beneficial in the long run, or using the whole template, because it’s supposed to work alright and not overload any servers just because of it’s size?
Hi,
Sorry for the late reply.
Please note that Metronic’s features are meant to use within Metronic based app and making any feature as a standalone component is not in the scope.
However there should be a way to remove unused features as much as possible so please reach our support via devs.keenthemes.com and we will try to guide you further.
Regards, Sean
Hello, is Metronic 7 included in the purchase? What is the latest angular version of Metronic 7? Is it updated?
Hi,
Yes, sure. You can get Metronic v7 by downlaoding it from an external link upon purchasing Metronic. Metronic v8 uses Angular v16 while older Metronic v7 comes with an older version of Angular.
Regards, Sean
Hi, downloaded the latest version and while building i getr this error:
[webpack-cli] Invalid configuration object. Webpack has been initialized using a configuration object that does not match the API schema. – configuration0.entry[‘js/widgets.bundle’] should be a non-empty array. -> All modules are loaded upon startup. The last one is exported. Can anyone help?
Hi,
Could you please check this as workaround. We will fix it soon.
https://devs.keenthemes.com/question/configuration0entryjswidgetsbundle-should-be-a-non-empty-array-1Thanks
Thank you!
Dear Community,
Metronic Evolution is on the way! Redesigned UI, dark mode, MUI Version with Next.js, Vite, Typescript, and a rich component library, plus Tailwind Version with Webpack support and versatile components.
1. Complete Redesign Revolutionary redesign with new UI, dark mode, user onboarding, profiles, and more.
- UI Kit: Complete revamp.
- Profiles: 10+ diverse options.
- User Onboarding: Multiple options.
- Account Settings: 30+ pages.
- Profile Pages: Over 10 layouts.
- User Management: Fully reimagined.
- Community Section: Enhanced interaction.
- System Pages: Innovative approach.
- All new Dark mode
MUI Version
- Next.js support
- Vite support
- Typescript version
- Javascript version
- Back-end API
- JWT, Auth0 & Firebase
- Feature-rich CRUD
- 500+ components
- Multi-demo concept
- Dark & RTL versions
Tailwind version
- Webpack support
- 40+ in-house plugins
- 500+ components
- Frameworks Compatibility
- Multi-demo concept
- Dark & RTL versions
Stay tuned. 
Hi! I am impressed with the template and looking for buy it. I have one question before I purchase. I want radio checkbox as well normal checkbox in image,something like this https://i.stack.imgur.com/d0yEE.png. Its possible with this theme? any example for the same ? Thank You.
Hi
,
Thank you for your interest in Metronic!
Please check Checks and Radios and Advanced Form elements documentation pages.
If you enquire for further assistance or have questions, we invite you to join our products community at https://devs.keenthemes.com/. There you can get assistance and guidance from KeenThemes core developers and community members.
Regards, Sean
Hello, I’m trying to see how datatables work with subtables with the code at this url: https://preview.keenthemes.com/html/metronic/docs/general/datatables/subtable Copying the HTML and javascript does not work but if I copy the minified js of this url it works https://preview.keenthemes.com/html/metronic/docs/assets/js/custom/documentation/general/datatables/subtable.js Could you show me the unminified code so I can see how it works. I am testing the Metronic HTML 8.1.2 version
Hi,
Sorry for the delayed reply and appreciate your feedback on this.
Sure, you can get the code here.
We will fix this in the docs shortly.
If you enquire for further assistance or have questions, we invite you to join our products community at https://devs.keenthemes.com/. There you can get assistance and guidance from KeenThemes core developers and community members.
Regards, Sean
Hello,
When we purchase, can we get the Figma file as well, please? This will help us layout our screens prior to building them with the components.
If so, can we contact you post-purchase to obtain the Figma file(s)?
Hi
,
Thank you for your interest in Metronic.
Yes, sure. You will get Metronic Figma FIle upon your purchase in “design” if the purchased package.
If you need any further clarifications please do let us know.
Regards, Sean, KeenThemes Support
How do I disable/enable input text by Switcher?
Hi,
You can use the following code on your page inside the SCRIPT tag after all the core JS files include:
// On document ready
KTUtil.onDOMContentLoaded(function() {
let input = document.querySelector("input");
let switcher = document.querySelector("#switcher");
switcher.addEventListener("click", function() {
if (input.disabled) {
input.disabled = false;
} else {
input.disabled = true;
}
});
});
For any further help please reach our support via support@keenthemes.com
Regards, Sean
Thank you for your quick response
So how can we make it be reversed? mean by default the input will be disabled and enabled on switch it
Hi,
You can change the logic a little bit:
switcher.addEventListener("click", function() {
if (switcher. checked) {
input.disabled = false;
} else {
input.disabled = true;
}
});
Also set “disabled” attribute for your input field.
Regards, Sean, KeenThemes Support
gulp—demo2 triggers following error
SyntaxError: Unexpected token ‘(‘ at Loader.moduleStrategy (internal/modules/esm/translators.js:133:18)
I want to install 8.2.1, How to solve this issue?
Hi,
Ensure that you are using the latest version of Node.js. It’s recommended to use Node.js version 18.x or later.
Try running Gulp without the—demo2 flag to see if the issue persists. For example: gulp
Make sure your package.json file includes the “type”: “module” field, like this:
{
"type": "module",
"dependencies": {
// dependencies here
}
}
Ensure that Gulp is installed globally with the latest version. You can update Gulp globally using:
npm install -g gulp-cli
After making these changes, try running your Gulp task again.
How are you hope you good
Excuse me I need to change my theme and it RTL
Are “plugins.bundle.rtl.css” and “style.bundle.rtl.css”
same for all themes?
Hi,
The RTL css files are generated for each demo by referring to RTL Assets guide.
If you enquire for further assistance or have questions, we invite you to join our products community at https://devs.keenthemes.com/. There you can get assistance and guidance from KeenThemes core developers and community members.
Regards, Sean
Hi,
Can you provide documentation of donut chart located in demo38/dashboards/call-center ??
Thank you very much!
Hi,
It does not use any plugin. Its based on native JS canvas library and you can check it’s code in src/js/widgets/cards/widget-19.js.
Regards, Seam
Thank you!
Por favor solucionar los formulario de sesión en la versión Laravel. He reconstruido los archivos con npm install y npm run dev, pero el problema persiste.
Hi,
We will double check it. May I know which zip did you download? From the themeforest or from Metronic Devs download page? http://devs.keenthemes.com/metronic/laravel
Thanks
Lo descargue desde Themeforest.
Could you please try to download from http://devs.keenthemes.com/metronic/laravel
Buenas, ya lo descargue e igual el problema es con los formularios. Muestra error, pero en la base de datos, el logueo si existe. El resto de la plantilla funciona con normalidad. Por favor revisar, que en la versión de prueba: https://preview.keenthemes.com/starterkit/metronic/laravel/login el problema también existe.
Hi,
The demo link, https://preview.keenthemes.com/starterkit/metronic/laravel/login, is functioning correctly on my end.
If you are using Windows, we will investigate the issue on that platform.
As a temporary solution, unzip again from Laravel folder. You do not need to run npm run dev. Simply install with composer install and run php artisan serve without rebuilding the assets. This should work because the precompiled assets is already included.
Thanks
Hello dear Keenthemes.
I intend to start a new project soon, however, I’m not sure whether to start with version 8.x or wait for a 9.x version that could be coming. Do you have an estimate of whether a version like this will be released soon, or would it just be updates for 8? Could a version like this come out in 2023?
Hi,
We will be working on Metronic v8.x for the time being. In the early 2024 we plan to release redesigned pages, apps and widgets for all the demos. You may proceed with the current version and in the near future you can consider a quick update.
Regards, Sean
Can you please check the link for Quick Installation Guide for Vue
https://preview.keenthemes.com/metronic8/vue/docs/getting-started/build/gulpI see, Page not found: getting-started/build/gulp
Hi,
The correct link for the getting started documentation is: https://preview.keenthemes.com/metronic8/vue/docs/getting-started/build
For instructions on generating styles with Gulp script in our HTML version, please refer to the Gulp Build documentation: https://preview.keenthemes.com/html/metronic/docs/getting-started/build/gulp
Regards,
Lauris Stepanovs,
Keenthemes Support Team
We installed the Laravel version of this theme. It loads perfectly. But Signin / Signup form processing not working. It didn’t get logged in. just reloading the page. Please solve this issue.
Hi,
Could you please open the browser console log and check if there are any error messages? Additionally, I recommend trying to rebuild the assets by running the following commands:
npm install
npm run dev
This should ensure that all dependencies are properly installed and the assets are compiled correctly.
If the issue persists or if you have any error messages from the console log, please share them with us.
Yes. already done. here is the console log: Uncaught SyntaxError: Cannot use import statement outside a module (at plugins.bundle.js scripts.bundle.js: Uncaught ReferenceError: $ is not defined at scripts.bundle.js
Could you please verify if the this js file is properly generated without any error? /public/assets/plugins/global/plugins.bundle.js
May I know which zip did you download? From the themeforest or from Metronic Devs download page? http://devs.keenthemes.com/metronic/laravel
I downloaded from themeforest.
Hi,
If you are using Windows, we will investigate the issue on that platform.
As a temporary solution, unzip again from the Laravel folder. You do not need to run npm run dev. Simply install with composer install and run php artisan serve without rebuilding the assets. This should work because the precompiled assets is already included.
Thanks
does your laravel has landing page?
Hi,
Thank you for your interest in Metronic.
Metronic Laravel implements only Demo1 main layout and auth pages. You can use the landing page HTML code with your Laravel app by simply coming the HTML code and required JS.
We invite you to join our products community at https://devs.keenthemes.com/. There you can get assistance and guidance from KeenThemes core developers and community members.
Regards, Sean
which livewire version you are using?
Hi,
Thank you for your interest in Metronic.
Currently we are using livewire version 2 for our Metronic Laravel Starter Kit. If you have any further questions please do let us know.
Regards, Sean
when we can expect the livewire 3 update?
Hi,
We will try to include it in the next Metronic v8.2.2 update as soon as possible.
Regards, Sean
What is the used laravel version in this,,
Hi,
Metronic’s Laravel Starter Kit uses Latavel v10 version. For any further help please refer to the Starter Kit docs here.
Regards, Sean