Discussion on Acorn - Vite React Admin Dashboard (React 19)

Discussion on Acorn - Vite React Admin Dashboard (React 19)

Cart 1,861 sales
Recently Updated
Well Documented

ColoredStrategies supports this item

Supported

This author's response time can be up to 5 business days.

308 comments found.

i want the tree view

Hi,

Unfortunately, the project does not currently have a tree view plugin. I think the link below will help you.

https://www.jqueryscript.net/tags.php?/tree%20view/

All the best.

Will it be updated to Bootstrap 5?

Hi,

When the non-beta version of bootstrap 5 becomes available, we plan to update Dore.

All the best.

can i use this theme for codeigniter 3.1.9

You can use our html theme with any backend technology you want.

Good day,

how can I delete the button on the right side? With the-magic-wall

Hi, Just wanted to check if Translation option is available for Dore jQuery – Bootstrap 4 Admin Template??

Hi Mate,

Any update for me?

Hi,

Unfortunately, it does not contain dore translation feature. You can add translation functionality using 3rd party plugins or with the help of backend technologies.

All the best.

Hi! It’s possible to fix this issue? https://ibb.co/BK4C2hn This problem occurs if some zeros appears one after another in the data array (dore.script.js, smallChart) For example if you pass some data: [200, 300, 100, 0, 0, 0, 0], you will see, that the line between points have borderWidth: < 1px (currently I have 2px (see image))

Thank you.

Hi,

I had to manipulate the chartjs yAxes settings to fix the problem. You can view the changing code blog and added parameter in the link below.

You need to assign a value to the suggestedMin parameter smaller than your minimum data. I think assign any negative value can also solve the problem. I am not sure.

https://codepen.io/originalai/pen/jOMBRGZ

All the best.

Yes, it works! Thank you so much

When the internet is disconnected the template does not work !!!

Can you raise us a good copy

Hi,

Unfortunately, we cannot see your email address in comments. When you write a message on our profile page, we can send it to your email.

https://themeforest.net/user/coloredstrategies

All the best.

Thank you good version

Hi I see it does not work in Internet Explorer I see however it is not listed I just did not check for it. My question can it with some tweaking from my side run in IE?

Hi,

Unfortunately, since we did not consider IE support during the development process, we cannot be sure exactly what you will encounter while providing this support. I’m sorry that I couldn’t submit a roadmap for IE support.

Thank you for your attention.

All the best.

Hello, how can i compile de SCSS (command line with sass) with the imported files _dore.style.scss and _mixins.scss

Hi,

The information on the following page will help you.

https://dore-jquery-docs.coloredstrategies.com/docs/gettingstarted/development

All the best.

I found the dore menu, once I press F11 in chrome for full screen, then press F11 to return back original mode, then the menu not working? it mean when the menu mouse click, sub menu will not open? anyone help? this issue is too obvious. because sometimes even I did not press F11 also got this problem. Urgently need help! Tq

hi,

We could not repeat the problem. What is the dore version you are using?

All the best.

Hello, I have a project made in django and bootstrap. I bought the templete and wanted to integrate some widgets from the templete. It’s possible? And how would I do that? I couldn’t understand it well in the documentation.

Hi,

Unfortunately we have no information about the usage of django. however, if you move the css files with the elements you want to use into your project, I think you can integrate them.

All the best.

Hello there,

I try use “Custom Select” example in the page Ui.Components.InputGroups.html, but have a bug and not working using select2.

Code: <div class="card mb-4"> <div class="card-body"> <h5 class="mb-4">Custom Select</h5> <div class="input-group mb-3"> <div class="input-group-prepend"> <label class="input-group-text" for="inputGroupSelect01">Options</label> </div> <select class="custom-select select2-single" id="inputGroupSelect01"> <option selected>Choose...</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> </div> <div class="input-group mb-3"> <select class="custom-select select2-single" id="inputGroupSelect02"> <option selected>Choose...</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> <div class="input-group-append"> <label class="input-group-text" for="inputGroupSelect02">Options</label> </div> </div> <div class="input-group mb-3"> <div class="input-group-prepend"> <button class="btn btn-outline-secondary" type="button">Button</button> </div> <select class="custom-select select2-single" id="inputGroupSelect03"> <option selected>Choose...</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> </div> <div class="input-group"> <select class="custom-select select2-single" id="inputGroupSelect04"> <option selected>Choose...</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> <div class="input-group-append"> <button class="btn btn-outline-secondary" type="button">Button</button> </div> </div> </div> </div>

Browser:

Hi,

There is some necessary customizations to make these two different things work together.

Here is an example:

<style> .select-2-custom-select-combined .select2 { /* Fixing width */ width: 1% !important; flex: 1 1 auto; } .select-2-custom-select-combined .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b { /* Removing select 2 arrow */ display: none; } </style> <div class="input-group mb-3 select-2-custom-select-combined"> <div class="input-group-prepend"> <label class="input-group-text" for="inputGroupSelect01">Options</label> </div> <select class="custom-select select2-single" id="inputGroupSelect01"> <option selected>Choose...</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> </div> <div class="input-group mb-3 select-2-custom-select-combined"> <select class="custom-select select2-single" id="inputGroupSelect02"> <option selected>Choose...</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> <div class="input-group-append"> <label class="input-group-text" for="inputGroupSelect02">Options</label> </div> </div> <div class="input-group mb-3 select-2-custom-select-combined"> <div class="input-group-prepend"> <button class="btn btn-outline-secondary" type="button">Button</button> </div> <select class="custom-select select2-single" id="inputGroupSelect03"> <option selected>Choose...</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> </div> <div class="input-group select-2-custom-select-combined"> <select class="custom-select select2-single" id="inputGroupSelect04"> <option selected>Choose...</option> <option value="1">One</option> <option value="2">Two</option> <option value="3">Three</option> </select> <div class="input-group-append"> <button class="btn btn-outline-secondary" type="button">Button</button> </div> </div>

Wowwww! Almost! Tks a lot!

When I using in select2-single, works well, but, in select2-multiple not works :(

Forget! Ignore, its worked! Tks a lot

how can i submit my form with php using rulesForm form id

want delete alert msg on submit form

Hi,

Unfortunately we cannot provide support for php usage. As a recommendation, I suggest you review the validation rules on the html side.

All the best.

Hi, I have a problem with “rotate-arrow-icon” in RTL mode, how can I fix it?

https://i.ibb.co/82CyT7H/Capture.png

Thanks a lot, it works.

Can you please, explain more about “built version of the project” ?

Hi,

I am very glad that the problem was solved.

The reason we call it “Built version”: It uses scss in Dore. Scss files need to be compiled. Dore uses ‘gulp’ as this compiler. At the same time, minify operations are performed with Gulp. If you want to examine in detail, you can browse the ‘src/gulpfile.js’ file.

If buyers do not want to make structural changes in Dore, they can use the version built directly in the dist folder.

All the best.

Thanks.

Hello,

Using the form validation present in https://dore-jquery.coloredstrategies.com/Ui.Forms.Validation.html, please, how I clear the messages after validation?

Hi,

In validation examples, messages are cleared when input values return valid at runtime.

All the best.

Tks :)

Hello there,

How the best way to discover em javascript theme selected (default/dark)?

Unfortunately that isn’t it. Is there a function like “isDarkMode” in javascript returns true/false to know if is dark mode?

Hi,

The code example below will help you.

 var themeColor = "dore.light.bluenavy.min.css";
 try{
      themeColor = localStorage.getItem("dore-theme-color");
  }catch (error) {}

var isDarkModeActive= themeColor.indexOf("dark") > 0 ? true : false;

All the best.

\o/ success! tks a lot

Hello,

Warning you about a problem when resize layout to mobile (see on the live version):

Hi,

Add the two lines like in the code example below and the problem will be resolved.

/*
src/css/sass/_dore.style.scss
line:5174
*/
    &.sw-theme-dots > ul.step-anchor > li > a:before,
    &.sw-theme-check > ul.step-anchor > li > a:before {
        left: 50%;
        transform: translateX(-50%);
        background: $separator-color-light;
        bottom: 5px;
        width: 24px;
        height: 24px;
        top:45px; // This line has been added.
    }

    &.sw-theme-dots > ul.step-anchor > li > a:after,
    &.sw-theme-check > ul.step-anchor > li > a:after {
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        bottom: 3px;
        background: $foreground-color;
        top:-3px; // This line has been added.
    }
<pre>

All the best.</pre>

Its works! Tks

hello, I have a probleme with icon card that move automatically to the first place, how can I fix that?

Thanks

try with small screen, you will see the problem.

Hi,

You are right about the glide carousel in rtl mode. It always goes back to the first one after a swipe. If this is the problem you are reffering, please update glide.min.js file with a new version. It should solve the problem. Here you may get the latest one: https://cdn.jsdelivr.net/npm/@glidejs/glide

Thanks, it worked.

Hello there,

Sometimes the menu click’s stop working, and I don’t know what’s going on (I haven’t figured it out yet!).

It works again when I click on the item below:

Is there a way every time I click on any menu item it reboots?

Tks

Im using 2.3.1 and I try your sugestion.

Tks a lot

It woks! (I think) I don’t see any problems in days.

This is very good news

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