Discussion on Metronic | Tailwind, Bootstrap, React, Next.js, Vue, Angular, Laravel Admin Dashboard HTML Template

Discussion on Metronic | Tailwind, Bootstrap, React, Next.js, Vue, Angular, Laravel Admin Dashboard HTML Template

Cart 119,758 sales
Recently Updated
Well Documented

keenthemes supports this item

Supported

This author's response time can be up to 1 business day.

12203 comments found.

The result of the View Demo button on Extended Modals example page, option Ajax does not seem right, it displayed the progress bar then disappears and a strange bar appears in the middle of the screen, you can check if it is correct?

Sorry, that’s correct.

Sorry, that’s correct.

Hi :),

Sorry we missed that. We will correct it in the next quick update soon. You just need to change the URL in ui-extended-modals.js script:

$modal.load('../../ui_extended_modals_ajax_sample.html', '', function(){
    $modal.modal();
});

Thanks.

Hello, I thought it will be a corporate theme with parallel effect in v3(((

Hi stunaz,

It’s coming very soon in 3.1 release.

Thank you.

Hi :),

Very sorry. We decided to release the next update earlier than planned(by end of may). However the one page theme is under development and we will release in v3.1 in 1-2 weeks.

Thanks.

URGENT

I just upgraded to the new 3.0 released May 1, 2014.

The Blue theme we have been using is now gone. How do we get the Blue theme available in the Feb 12 release back?

The online example still has Blue.css, but the downloaded package doesn’t

Hi :),

If you can use SASS you can compile new themes from any color. Shortly i will generate the blue color theme and advise you how you can set it up. Please stay tuned!

Thanks.

Looking forward urgently to the return of the Blue Theme. You have an awesome product.

Hi :),

We are working on this and we will be releasing revamped blue theme color in the next update. If you need this urgently you can just send an email to our support and we will provide it once it will be ready.

Thanks.

Page admin/login.html, error loading assets/global/plugins/select2/select2-metronic.css (ERR_FILE_NOT_FOUND) file, the. css file does not exist.

Hi :),

Thanks for the feedback. You can remove this css file from the page since its not required. In the next update we will exclude it.

Thanks.

Hi Keenthemes,

kind of dissapointed, You told me you were going to add the full hide sidebar menu on the next release which is the 3.0, and i dont see it :(

Hi :),

You should move the sidebar toggler to the header as shown here: http://keenthemes.com/preview/metronic/templates/admin/layout_sidebar_search_option1.html

Thanks.

ah great!, now i am happy :D Thanksss Keenthemes

Glad for you! You are most welcome! :)

Thank you for 3.0 update. Great job!

You are most welcome! Many thanks for the comment! :)

Hello,

we downloaded the version 3.0 but in Firefox 29 on osX there are problems with icons there are ? everywhere.

Regards.

I will check and let you know.

It’s true if we run in localhost it’s working. Thanks.

Since we are developing our CMS and our webistes on your theme it will be better if you don’t redesign the files structure every update :)

Hi :),

Glad you get it working. We do understand you concern on the file structure changes. We will try to not do it often :). This time we had to consider it since we introduced multitheme structure so in a future releases we can add more sub themes and design options.

If you need any further clarifications please let us know.

Thanks.

Hi

Do you know that you are the best :)

I have purchase your template just to support you :bashfulcute:

Many thanks for the support :) We do really appreciate it!

thank you for the upgrade. may i ask the classic question : how to upgrade for a project already in construction ?

Hi :),

In this release we changed the folder structure to enable multi theme support within Metronic framework. Also there are major changes in the CSS part(which is generated from SASS files). I would suggest you to reintegrate this latest version and continue your development. The changes will be mostly in the html layout(header, sidebar, footer, etc). The content part will remain without major changes.

If you need any further clarifications please let us know.

Thanks.

i will try. i’m working with a framwork so focus on elements (header, sidebar…) will be easy but i must work on integrating all assets and all the code… thank you.

Alright. If you need any assistance please let us know. Good luck :)

Downloading 3.0 can’t wait to give some feedback.

I hope you will like it :)

hi,

will you add a jquery-ui themeroller theme in the incoming release ?

keep up the good work:)

Hi :)

Thanks for your feedback. Sorry , we are not planning to integrate the jQuery UI components soon. Maybe we can consider it in the future.

Thanks.

Where should I include the license or purchase code in the my project. I am not sure how to use the license.

Hi :),

You don’t have to use the license. The license is just a proof that you are using Metronic them legally. So you can just keep it somewhere safe.

Thanks.

Hi,

When you have page-sidebar-closed on the body and then you resize the browser smaller and then bigger the js does not add back in the page-sidebar-closed. This means that the sidebar is now fully open. I would like the sidebar to be closed at all times. Any fix for this? This issue can be seen on the current keenthemes.com/preview

Hi :),

Thanks for your feedback. This issue were fixed in the latest update. You can do a quick fix by disabling below function call in app.js:

var handleSidebarState = function () {
        // remove sidebar toggler if window width smaller than 992(for tablet and phone mode)
        var viewport = _getViewPort();
        if (viewport.width < 992) {
            $('body').removeClass("page-sidebar-closed");
        }
    }

If you need any further assistance please let us know.

Thanks.

I too would like to know how far away 3.0 may be. Before I start digging into this project with the template, I don’t want to waste time if you will be releasing an better integrated setup. Is it soon or months away?

Hi :),

Just to inform you that the next update should be available soon once its approved. Stay tuned!

Thanks.

Wow, fantastic job. I am really excited to dig in and update my site. Thank you for your dedication!!!

Many thanks for the comment! We do really appreciate that. Good luck with your project! :)

In your forms samples, you can select or have multiple checkboxes checked at once. I working on a form that presents 5 different options with 5 empty checkboxes, only 1 can be selected or checked at a time, if you make a selection and check one checkbox then decide to check a different one then the first one has to get unchecked. In short, only 1 checkbox among the 5 options available can be checked at any given time.

Thank you,

Tonyxt1

Hi :),

Thanks for your feedback.

The checkbox samples in the Metronic demos demonstrates default checkboxes. However you can implement the flow you need by writing some custom code(using jquery) that handles it as per your requirement.

Thanks.

Hi! There could be a bug in AJAX page layout
http://www.keenthemes.com/preview/metronic_admin/layout_ajax.html
If you select submenu (e.g. Ajax sample link 3) and then go back to Dashboard (to any menu link which has no submenu) it is not closing previous submenu.

Thanks

Hi :)

Alright. Please use below code which works exactly as you described:

      var the = $(this);

            $.ajax({
                type: "GET",
                cache: false,
                url: url,
                dataType: "html",
                success: function (res) {

                    if (the.parents('li.open').size() === 0) {
                        $('.page-sidebar-menu > li.open > a').click();
                    } 

                    Metronic.stopPageLoading();
                    pageContentBody.html(res);
                    Layout.fixContentHeight(); // fix content height
                    Metronic.initAjax(); // initialize core stuff
                },
                error: function (xhr, ajaxOptions, thrownError) {
                    Metronic.stopPageLoading();
                    pageContentBody.html('<h4>Could not load the requested content.</h4>');                    
                }
            });

if you need any further assistance please let us know.

Thanks.

Thanks! Exactly what i was after!

Great! Good luck with your project! :)

Hello. Theme just ordered, thank you. I’d like to know you you have or know anyone with this Admin and website fronted just programed with a lot of lines and working. It’ll save me time programing. I’d like to see and maybe buy it. Where do I check it? How? Thanky you. P.s: I’ll make a Insurance brokre website.

Hi :),

Thanks for choosing Metronic!

At the moment we are not providing web development services. Maybe we can do that in the future. Anyways good luck with your project!

Thanks.

Hey! What is the expected release date for the 3.0 version? I really can not wait!

Hi :),

We just submitted the next update and it should be released shortly. You will receive an email notification once its released. You can follow us on twitter.com/keenthemes/ to get the latest news and updates.

Thanks.

Hello!
Is it possible to fixed the left vertical menu while scrolling page?

Hi :)

Sure, you can check it here: http://keenthemes.com/preview/metronic_admin/layout_sidebar_fixed.html

To achieve this layout you just need to apply “page-sidebar-fixed” class to the body element.

Thanks.

Thank you very much!

You are most welcome! :)

Hi,

I’m trying to set a location in page_contact.html. To do so, I set the location coordinates (in lat and lng parameters) in assets/scripts/custom/contact-us.js. For some reason I only get a blue block. Can you tell me what the problem is? (It’s a place in the Netherlands)

Hi :)

Thanks for your feedback. Please make sure you set the location properly. Does the map work If you revert back to the default location ? If you need our further assistance please email us(support@keenthemes.com) more details(your location, the js code you used/modifed or a link to your developing site).

Thanks.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey