Discussion on OneUI - Bootstrap 5 Admin Dashboard Template, Vue Edition & Laravel 11 Starter Kit

Discussion on OneUI - Bootstrap 5 Admin Dashboard Template, Vue Edition & Laravel 11 Starter Kit

Cart 5,586 sales
Recently Updated
Well Documented

pixelcave supports this item

Supported

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

425 comments found.

Is there any plan to upgrade Bootstrap to version 5.3?

Many thanks for choosing OneUI for your project! Yes, of course, it is coming soon, so stay tuned!

Hi! How do I use this in a javascript module?

Hi, many thanks for choosing OneUI for your project! You could use our custom source JS files and import the assets/_js/main/app.js in your code.

Feel free to also have a look at the JavaScript section in the docs where more info is included regarding the JS structure but also let us know if you need any further help or something does not make sense. Happy coding!

Hi. Thank you for pointing that out. Great product btw.

You’re very welcome, we’re glad you like it! Wish you all the best with your project!

Where would be the best place to include my custom CSS so it won’t break when a template update is released?

You should add any customizations and overrides in your custom folder which should not be updated. Feel free to have a look at the Updating and Sass sections in the docs for more info. Hope that helps!

Hey there,

Would be great if you add the option to display “Youtube videos” within the “Gallery” https://demo.pixelcave.com/oneui/be_comp_gallery.html.

Cheers!

Hey Jimmy, thanks for your suggestion. There is already such feature in the Magnific Popup library and you can easily check out how to include YouTube videos at https://dimsemenov.com/plugins/magnific-popup/ Hope that helps!

Hey pixelcave, thanks for your answer and the link. Will look into it but thought if little things like these are pre-made and built-in (gallery with video play overlay buttons etc.) it could save a lot of time. :) Thanks!

Thanks for your suggestion once again Jimmy, of course, we might add more gallery examples with a future update. Happy coding! :-)

Hi, I was wondering if the theme has any chat pop-up layout (something like facebook messenger on desktop)?

Hi, there is no such component at the moment but we might add something similar in the future, so stay tuned!

Hi there,

Suggestion: Would be great if you include this into ONE UI out of the box instead we need to create custom css. It also has to work with dark mode etc.

Here’s the suggestion: “Make hero section and primary navigation share background”. This is very useful for landing pages and modern design. Basically like what you did on https://demo.pixelcave.com/oneui/ but with an image.

Thanks

Hi, thank you for your suggestion. You can easily achieve this by adding the classes “shadow-none bg-transparent” in #page-header and “pt-0” in #main-container or just bypass the default header but add its inner content directly in the hero section. Hope that helps!

Hi,

Thanks for your reply. The first solution worked nicely. Forgot pt-0 in main container.

You’re very welcome, happy coding!

Is there any class I can use that will make any element dark when I toggle the dark mode on?

Hi, there aren’t such classes available but you could easily add something like the following in your custom/_main.scss file:

.dark-mode-d-inline-block,
.dark-mode-d-block,
.dark-mode .dark-mode-d-hidden {
  display: none;
}

.dark-mode .dark-mode-d-inline-block {
  display: inline-block;
}

.dark-mode .dark-mode-d-block {
  display: block;
}

Hope that helps!

Hey all! We just wanted to let you know that OneUI 5.6 update just went live and comes packed with Laravel 10 support, fixes and updates! All existing customers can download it for free from their downloads page. Changelog and update information can also be found in the updated documentation! :-)

5.6 Update – March 10, 2023

  • FEATURES
    • Laravel Starter Kit: Laravel 10
  • FIXES
    • Striped table colors in DataTables
  • UPDATES
    • 12 dependencies updated to their latest version

If you have any questions feel free to get in touch through our profile’s contact form, we’ll be more than happy to assist you as soon as possible! Happy updating and coding! ;-)

Hi, Any plan to support InertiaJS ?

Hi! The OneUI Vue Edition contains a Laravel Version in which you can easily install Inertia.js by following the official docs. Hope that helps!

How I can Implement RTL For VueJS Version ?

You can easily enable RTL support and/or move sidebar to the right through the related option in your Pinia store file.

By default, we support RTL styles for the main layout but most of the main content should render fine with some small modifications.

Hi, I think the font is broken in Google Chrome. This is how the app & other page look in Chrome for me: https://i.imgur.com/lxgDtBu.jpg https://i.imgur.com/Gbp4EQI.jpg

Is the same if I close the browser, or load a new window Incognito.

Fonts appear ok in Firefox

Hi, thank you for your interest in OneUI! This shouldn’t be happening and we are not able to replicate it. Please check if you are using a Chrome extension that works even in incognito mode and causes the issue or if you already have a font locally installed named “Inter” which isn’t the official one. Feel free to have a look and let us know.

Thank you for the quick reply. I looked at the console & it says ” Slow network is detected. See https://www.chromestatus.com/feature/5636954674692096 for more details. Fallback font will be used while loading: https://demo.pixelcave.com/oneui/assets/fonts/simple-line-icons/Simple-Line-Icons.woff2?v=2.4.0"

So, must be a problem at my end. sorry for wasting your time. Will purchase this awesome kit tomorrow! thanks

No worries at all, thank you once again for your interest in OneUI! Feel free to let us know if you need any further info.

Hi! Is it two projects?

Front(Vuejs) and Back(Laravel)

By API?

Thank you for your interest in OneUI! The Vue Edition comes with 2 separate versions. The first one is based on Vite and it’s a standalone Vue.js 3 based app. The second one is a Laravel app with the Vue.js 3 frontend already integrated in the project (works with Laravel Vite out of the box). It’s up to you to use an API or connect it directly to the backend based on your project requirements. Hope that helps but let us know if you need any further info!

Is it possible to use this template with Laravel Jetstream?

Yes, you could use it alongside Jetstream (Livewire) but the same applies since you should integrate OneUI’s design in the default frontend scaffolding provided by Jetstream.

Thanks for your response, I’ve opted on making my own front-end using Laravel Fortify + the OneUI Laravel theme, that seems like a cleaner less hacky way to do it. :)

You’re very welcome! Much better choice to go directly with Fortify instead of altering the Jetstream starter kit which also uses Fortify under the hood. Happy coding :-)

Hey, if we want to create a Slim4 project, can we use OneUI as Twig files as well? Thanks!

Hi, many thanks for choosing OneUI for your project. We are not familiar with Slim4 but you could easily use the abstract HTML markup with any templating language you want!

Suggestion for documentation, this took a little while to figure out:-

If you want to include Jquery in the Vite module as a deferred load rather than as a separate blocking script, there’s a couple of steps:-

Import it in app.js
import $ from 'jquery'
window.$ = window.jQuery = $;

Then in your frontend blade files when calling a One helper setting the script type as a module ensures Jquery will be loaded first:-

  @push('scripts')
        <script type="module">
            $(function () {
                One.helpers('jq-notify', {type: 'danger', icon: 'fa fa-alert mr-1', message: '{!! $msg  !!}'});
            });
        </script>
    @endpush

Also @push(‘scripts’) requires @stack(‘scripts’) to be added at the end of your layout before tag.

Now your views can call Jquery functions without error.

Many thanks for choosing OneUI for your project and your suggestion, it is very helpful and we will make sure to either include it in the docs or provide a related working example in the starter kit!

Hey all! We just wanted to let you know that OneUI 5.5 update just went live and comes packed with new features and updates! All existing customers can download it for free from their downloads page. Changelog and update information can also be found in the updated documentation! :-)

5.5 Update – December 6, 2022

  • FEATURES
  • UPDATES
    • Bootstrap 5.2.3 (5.2.0)
    • Laravel Starter Kit: Laravel 9.42.2 (9.23.0)
    • 16 dependencies updated to their latest version

If you have any questions feel free to get in touch through our profile’s contact form, we’ll be more than happy to assist you as soon as possible! Happy updating and coding! ;-)

I’ve noticed that CKEditor has a lot of files, since I’m not using it on my project, I was thinking about deleting it, what would be a safe way to remove it, I just have to delete it from the /js folder or do I also have to modify the plugins or any other file that links to it?

Hi, if you are not using it in any page, then you can just remove it from the js/plugins/ folder and you will be good to go!

Is anyone from OneUI available for hire to upgrade my website? I currently have OneUI and don’t have time to manage the UI elements anymore

Hello, many thanks for choosing OneUI for your project! We just replied to your email. We hope an existing customer to be able to assist you. Feel free to let us know if you need any further info.

Hi, at first thank you for this greatful Template . I like it very much. The new Mini Nav is super great. Are there plans to add templates with the mini nav only as main nav without the rest of the sidebar?

Thank you in advance

Hi, many thanks for choosing OneUI for your project and kind words, we are very happy you like it! There are no plans at the moment but we might provide a similar example in the future. Feel free to let us know if you need any further info and happy coding!

Hi, I would like the version with composition API + laravel starter kit …. does it exists ?

Hi, thank you for your interest in OneUI! You must be looking for OneUI Vue Edition which comes in two versions (1. Vite based app and 2. Laravel).

It is included in the main package but is also available for purchase separately. Hope that helps but feel free to let us know if you need any further info.

Recently purchased this theme through a work account for a project. The Laravel starter kit is using VUE. Is there not a Laravel starter kit using the HTML/CSS or a way to use the HTML/CSS?

Many thanks for choosing OneUI for your project! The Laravel Starter Kit is based on the HTML version but there is also a full Laravel version (with Vue) in the Vue Edition. Feel free to get in touch through our profile’s contact form from the account the purchase was made if you need any additional help.

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