12202 comments found.
I wrote a react application that’s based on metronic react. the thing is the metronic folder has files that are all imported by index.js and its subs. but I obviously do not use all the code you’ve provided. do you have any method to delete unused metronic code by my application without breaking the application?
Hi Nabe_J,
Try to follow the doc: https://keenthemes.com/metronic/?page=docs§ion=react-skeleton
Regards, Keenthemes support
Hi, when I call an API from Metronic Angular template and trying to display the result array on a view. The same code works with the default angular template and not with Metronic. Here is my code:
SERVICE:
import { Injectable } from '@angular/core';
import { HttpClient } from "@angular/common/http";
@Injectable({
providedIn: 'root'
})
export class ApiCallService {
url = 'https://jsonplaceholder.typicode.com/users/1/posts';
constructor(private http: HttpClient) { }
getPosts() {
return this.http.get(this.url);
}
}
COMPONENT:
import { Component, OnInit } from '@angular/core';
import { ApiCallService } from "../../services/api-call.service";
@Component({
selector: 'app-api-call',
templateUrl: './api-call.component.html',
styleUrls: ['./api-call.component.scss']
})
export class ApiCallComponent implements OnInit {
constructor(private api: ApiCallService) { }
data: any;
ngOnInit(): void {
this.api.getPosts().subscribe(res => {
this.data = res;
});
}
}
in HTML I am looping data variable using *ngFor
This is just a simple example and the data is also comming to the property but why it is not working in Metronic?
Hi Modern_Themes,
Try to do next steps: 1. Switch API from mock to Real https://keenthemes.com/metronic/?page=docs§ion=angular-mock-backend
2. For increasing performance in Metronic Angular, we choose ChangeDetectionStrategy OnPush.
Try to follow the doc: https://alligator.io/angular/change-detection-strategy/ In your case, in constructor add private param: ‘cd: ChangeDetectorRef’, then in your subrscribe result call ‘this.cd.detectChanges();’
Regards, Keenthemes support
Hi, in my project it is already changed from mock to real. It started working after adding “this.cd.detectChanges();” code. But its better if you can include these kind of codes in your documentation and explain in order to avoid confusion. Anyway thank you for your support.
ChangeDetection strategy is the core and important thing in Angular, and well described in official Angular documentation. We aren’t able to copy all libraries’ core documentation into Metronic one.
Regards, Keenthemes support
Hi, first of all I want to say you did a great job. Thank you very much. We want to buy Metronic for a project we will start, but most of the pages prepared in metronic 7 version do not appear in metronic 8 demo. For example, if I need to give an example through the HTML version of Demo 1, I see that many pages related to form elements are available in metronic 7 (ie for bootstrap 4), but not in metronic 8 (for bootstrap 5). Could you give a date on when these pages will be added? Thanks in advance for your answer.
Hi
,
Thanks for your interest in Metronic.
Metronic v8 with Bootstrap 5 is getting more powerful with every update. In fact it offers now new features that are not available in v7. At the same time we are porting v7 features as they are ready for Bootstrap 5 in every update.
You can check currently available v8 features: https://preview.keenthemes.com/metronic8/demo1/documentation/getting-started.html and changelog https://preview.keenthemes.com/metronic8/demo1/documentation/getting-started/changelog.htmlif you need a specific features from v7 please email our support at support@keenthemes.com and we will speed up it’s availability in v8 as soon as we can.
Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes
Regards, Sean
Hi – when are you planning to release the Angular version for Metronic 8?
Hello,
It is our next roadmap after React version of Metronic 8 is released. It is hard to set a due date for now, however our target is to release it within July.
Thank you.
Hello team! Are you guys going to tweak fullcalendar to be fully responsive? it doesn’t look good on mobile devices. thanks
and one last thing is how can I use the Laravel “can” directive to show or hide menu items, I can’t find documentation about it in the Laravel 8 version docs, can you please guide me on how to set the permissions for the menu items, for example something like this:
[
'title' => 'Users',
'icon' => [
'svg' => Theme::getSvgIcon('icons/duotone/General/User.svg', 'svg-icon-2'),
'font' => '',
],
'classes' => ['item' => 'menu-accordion'],
'attributes' => [
'data-kt-menu-trigger' => 'click',
],
'root' => true,
'can' => 'users.read',
'parent_route' => 'admin.auth.user.*',
'sub' => [
'class' => 'menu-sub-accordion menu-active-bg',
'items' => [
[
'title' => 'User List',
'can' => 'users.list',
'path' => 'admin.auth.user.index',
'bullet' => ' ',
],
[
'title' => 'Deactivated Users',
'can' => 'users.deactivate',
'path' => 'admin.auth.user.deactivated',
'bullet' => ' ',
],
],
],
],
so that we can use the spatie’s laravel permission that you have installed in the laravel version, if we cannot show and hide menu items based on the auth()>user>can(‘permission’) then this menu is useless and will be a shame all this hard work without using the potential it has.. thank you!!
Hi,
We plan to add basic permissions feature in the next update. Also permissions and roles listing UI probably after next wek update.
More features will be avaialble in the future updates soon.
Thanks
Hi
,
Noted, we will improve the Fullcalendar responsiveness in the next update.
Regards, Sean
Thank you guys! amazing job with M8 
Hi,
Do you have plans to release the theme version 8, with angular version 12 this month? do you have some date?
Note: Will it have the new functionality of APP_INITIALIZER with Observables?
Hi WeslleyPaulo,
ETA for the Angular Metronic version 8 is 20-30 of July. We don’t have changes related to APP_INITIALIZER in the new version.
Regards, Keenthemes support
I would like to know if the frontend is in HTML or in some language like REACT or VUE
Hello,
Metronic 7 comes all versions. HTML, Vue, React, Angular. Metronic 8 at the moment comes with HTML & Vue, while React version is almost ready for release. Angular is coming soon as well.
Please feel free to ask if you have questions.
Thank you and stay tuned 
Hi!
My +1 for the dark skin development, to motivate your developers for a release ASAP. 
Best regards!
Noted
Thanks for your feedback!
Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes
Hi, just one question. Does the Layout builder export all the templates/pages included in the demo? User preferences, projects etc.
Hi
,
The layout builder exports only the layout HTML code and you can use it with your assets in your local development environment. This makes it easier prepare your app layout and you can build your pages by copy and pasting features from the theme.
Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes
Regards, Sean
excellent sales results!
Thanks a lot for the comment 
presentation of information for every taste, I like it!
Yes, even more features will be released soon. Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes
Looking forward for the dark skin (horizontal and vertical demo) 
Hi
,
We are on it now and going to release it soon.
Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes
Regards, Sean
Hi
,
Just in case if you haven’t seen it yet, we are delighted to inform you that Metronic finally has its complete dark mode version. You can check the dark mode preview here https://preview.keenthemes.com/metronic8/demo1/dark/index.html
Regards, Sean
Hi there, i already purchased that and we need 2 licenses more. But i need a independent suggest by you professionals to work with correct developers.
what is the best version (VueJS, React, Angular 11 & Laravel) to build a Web-App (Frontend, Backend for customers with profile & workers on managing-dashboard AND smartphone-App (android & iOS)?
All shall work with one database
Thank you very much guys – great great job!
Hi
,
Thanks for your interest in our theme – Metronic.
Metronic offers all: HTML, Angular, React , Vue and Laravel. It depends on how large is your project and your deadline. The HTML version can be an easier one to start and deploy while the SPA frameworks are best for large and long-run projects. Also, it depends on your developer’s skills they are comfortable with the SPA versions would be a great choice as well.
Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes
Regards, Sean
Hi, what text editor you are going to use in version 8? thanks.
Hi
,
Thanks for your interest in – Metronic.
We use https://quilljs.com/playground/ and it’s globally available in the main css/js bundle. You can use it by referring to https://preview.keenthemes.com/metronic8/demo1/widgets/feeds.html
We will add this and other editor plugins integration documentation soon.
Regards, Sean
Summernote is still be used or not later? i hear it’s not compatible with Bootstrap 5 is it true? thanks.
Yes, it’s not being updated yet. We will provide alternative editors soon.
The vue version of select2 does not seem to work, please check, thank you
Hi,
Since select2 requires jQuery we are not using select2 plugin in vue version.
If you are using Metronic 7 as an alternative you can use Vuetify select.
If you are using Metronic 8 as an alternative you can use Element UI select or Vue Multiselect.
Regards,
Lauris
hi, quick question. my platform doesn’t support bootstrap 5 yet, and I would like to download latest v7, but I can only download latest version on themeforest. how can I download older version?
Hi
,
Thanks for your interest in Metronic.
In the current download zip both v7 and v8 will be included.
Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes
Regards, Sean
Hi keenthemes,
How much icons (number) does Metronic8 duo tones has ??
Thank you
Hi
,
As you can browser here https://preview.keenthemes.com/metronic8/demo1/documentation/general/icons/duotone.html there over 1000 duotone icons.
We are also designing our in-house duotone icons and we will release them soon.
Regards, Sean
Great,
since it is an admin theme for web app, I would recommand You Sean to create/concentrate those in-house duotone for CRUD like icons : Add, Delete, View, Update, History, Save, Print, Pay, Generate, Send, Logs, Archive, Upload, Download…... you got the thing. all a web app icons needed for.
So it will be easy for people to use them directly as they are symetric to each other …
We found it not very pleasant to even for desing puposes, to have Save button icons in bootstrap icons and delete font awesome icons and so in the same app, because you can”t find the same icons set in the same library.
Hope you got the pont,
thank you
Hello
I have a problem with bootstrap 5 theme 1
The Toolbar not working with dropdown, I checked the metronic version with bootstrap 4.6 and it working correctly.
https://imgur.com/a/VtoRBFJ
https://imgur.com/a/HumJ5oS
It not working like the bootstrap 4.6 version with (flex-wrap)
https://imgur.com/a/80MhKnD
Hello,
Sorry for the late reply.
Since this is a complex toolbar layout the overflow was used for responsiveness. The Bootstrap dropdown features does not work inside overflow containers so you can use our “menu” or “select2” component within the overflow toolbar or you can remove “overflow-auto” class to disable the overflow feature. We will revise and try to improve the responsiveness in future updates. For any further help please contact our support via support@keenthemes.com
Regards, Sean
Hello, the dropdown still does not work
Thanks it worked with the menu component
Hi
,
Yes, we developed our own KTMenu component to solve such overflow use cases that standard Bootstrap Dropdown does not handle. You can check the KTMenu(Bootstrap Menu) documentation here https://preview.keenthemes.com/metronic8/demo1/documentation/general/menu.html or contact our support if you need any further help
Stay tuned for updates via https://twitter.com/keenthemes and https://www.instagram.com/keenthemes
Regards, Sean
Hi, theme/demo2/dist/dashboard/aside.html not working
Hi,
May I know which version of Metronic are you referring to ?
As we tested it seems working fine: https://preview.keenthemes.com/metronic8/demo2/dashboard/aside.htmlRegards, Sean
Hi, Screenshot https://www.hizliresim.com/701nhcl
It’s not in the file we downloaded, I’m talking about version 8 demo 2
https://github.com/KeenthemesHub/Metronic/tree/master/html_bootstrap5/theme/demo2/distThe html page is also not available on Github
Hi
,
Good spot. We will double check and fix it in the next update shortly.
Appreciate your feedback.
Regards, Sean
Dears, rtl version is not correct and not shows as it should be
please fix the rtl versions in all demos and test it correctly
Hi
,
Thanks for your feedback. Please note that the RTL demos uses CSSRTL gulp/webpack plugins to convert our default css into rtl version. Most of the rtl issues are actually matter of flipping the alignment classes from left to right in the HTML level. If you notice core bugs related to RTL please contact our support at provide more details and we will fix it in the following updates for sure.
Regards, Sean
Thanks Sean but you already fixed this issues in v7 why not fix this small issues in v8?
hope team you can fix it soon
Sure, we will fix it in the following updates. 