1060 comments found.
Hey… Thanks for this perfect theme!
I’m unable to install the pricing page even though I have placed all the required files correctly.
any tips on that?
and any chance that I can get a prepared pricing.html file with the required assets to run it immediately?
thanks!
Dear yusufmh92,
Thank you for contacting Design Reset.
Please go through following steps:-
1. Check whether you have included correct Pricing Table HTML.
2. Check whether you have included correct Pricing Table CSS ( with all mandatory files )
3. Check your dynamic code maybe your dynamic code is blocking your front-end code.
If the issue still the same kindly share your code and let us know which pricing table you are trying to include.
Hope this helps 
Kindest Regards,
Design Reset Team
Hi! Can you help me with any idea of how to present that the username or password is incorrect on the login page?
Dear miguelnatali,
Thank you for contacting Design Reset.
Kindly follow the links mentioned below
- https://stackoverflow.com/questions/30288116/username-and-password-validation-using-javascript
Hope this helps 
Kindest Regards,
Design Reset Team
Dear Team,
When I am using jQuery on select field but it is not working. Can you check following code.
<script src="https://code.jquery.com/jquery-1.10.1.min.js" crossorigin="anonymous"></script>
<script>
$(document).ready(function() {
$("#source").change(function() {
var el = $(this) ;
if(el.val() === "ONLINE" ) {
$("#status").prop("disabled", false);
$('#status').empty();
$("#test").prop("disabled", true);
$("#test").append(" <option disabled selected>SELECT</option>");
$("#status").append(" <option disabled selected>SELECT</option>");
$("#status").append(" <option value='ONLINE1'>ONLINE1</option>");
$("#status").append(" <option value='ONLINE2'>ONLINE2</option>");
}
if(el.val() === "MANUAL" ) {
$("#status").prop("disabled", false);
$('#status').empty();
$("#test").prop("disabled", true);
$("#test").append(" <option disabled selected>SELECT</option>");
$("#status").append(" <option disabled selected>SELECT</option>");
$("#status").append(" <option value='MANUAL1'>MANUAL1</option>");
$("#status").append(" <option value='MANUAL2'>MANUAL2</option>");
}
});
$("#status").change(function() {
var el = $(this) ;
if(el.val() === "MANUAL1" ) {
$("#test").prop("disabled", false);
$('#test').empty();
$("#test").append(" <option disabled selected>SELECT</option>");
$("#test").append(" <option value='OPEN1'>OPEN1</option>");
$("#test").append(" <option value='OPEN2'>OPEN2</option>");
$("#test").append(" <option value='OPEN3'>OPEN3</option>");
}
if(el.val() === "MANUAL2" ) {
$("#test").prop("disabled", false);
$('#test').empty();
$("#test").append(" <option disabled selected>SELECT</option>");
$("#test").append(" <option value='TEST1'>TEST1</option>");
$("#test").append(" <option value='TEST2'>TEST2</option>");
}
});
});
</script>
LEVEL 1 :
<select id="source" name="source" class="selectpicker">
<option disabled selected>SELECT</option>
<option value="MANUAL">MANUAL</option>
<option value="ONLINE">ONLINE</option>
</select>
LEVEL 2 :
<select id="status" name="status" class="selectpicker" disabled>
<option disabled selected>SELECT</option>
</select>
LEVEL 3 :
<select id="test" name="test" class="selectpicker" disabled>
<option disabled selected>SELECT</option>
</select>
Dear DejaVu909,
Thank you for contacting Design Reset.
We have checked your code and it seems to work absolutely fine.
Will you please elaborate your issue? What actually you are trying to achieve.
With Regards,
Design Reset Team
I have add following css and js after that you can try it is not working.
<script src="https://code.jquery.com/jquery-1.10.1.min.js" crossorigin="anonymous"></script>
<link href="assets/css/loader.css" rel="stylesheet" type="text/css" />
<script src="assets/js/loader.js"></script>
<link href="https://fonts.googleapis.com/css?family=Nunito:400,600,700" rel="stylesheet">
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<link href="assets/css/plugins.css" rel="stylesheet" type="text/css" />
<link href="plugins/apex/apexcharts.css" rel="stylesheet" type="text/css">
<link href="assets/css/dashboard/dash_1.css" rel="stylesheet" type="text/css" />
<script src="assets/js/libs/jquery-3.1.1.min.js"></script>
<script src="bootstrap/js/popper.min.js"></script>
<script src="bootstrap/js/bootstrap.min.js"></script>
<script src="plugins/perfect-scrollbar/perfect-scrollbar.min.js"></script>
<script src="assets/js/app.js"></script>
<script>
$(document).ready(function() {
App.init();
});
</script>
<script src="assets/js/custom.js"></script>
<script src="plugins/apex/apexcharts.min.js"></script>
<script src="assets/js/dashboard/dash_1.js"></script>
Dear DejaVu909,
Your third level code did not seems to work when selecting online option.
If this is the issue then we have fixed it. -> ( https://pastebin.com/UGUipyci )
If this is not the issue kindly guide us where you are actually having the issue.
Hope this helps 
Kindest Regards,
Design Reset Team
Dear Team,
There are not issues with JavaScript. I have already tested on plain HTML file, it is working well. As per my view problem with css class. When I used “selectpicker” that time only it is not working I guess it is conflicting with either any of js or css file.
<select id="source" name="source" class="form-control selectpicker">
Dear DejaVu909,
Kindly refer to bootstrap-select docs as it already have methods and options that would help you.
As using your own script would not work as expected.
Methods;
- https://developer.snapappointments.com/bootstrap-select/methods/
Options;
- https://developer.snapappointments.com/bootstrap-select/options/
Hope this helps 
Kindest Regards,
Design Reset Team
Dear,
I am telling you, it is conflicting some where with selectpicker this class. Please try to fix it. If I remove that class then it is working well ..
I hope it is clear with you.
Thank you for your kind support.
Regards
Dear DejaVu909,
We think that you are confused between bootstrap-select and native bootstrap select
As you have mentioned that removing selectpicker class solves the issue. Check out jsfiddle link which have only jquery and htm.
- https://jsfiddle.net/pek7o0a5/
This is because bootstrap-select is a plugin and it is not made with native bootstrap.
That’s the reason we are telling you to use bootstrap-select methods and options as your javascript or jquery code will not work (we are not saying that your code will never work).
Your code will only work when you use bootstrap-select methods and options with your javascipt or jquery code.
For example :
If you want to change your data according to the selected options you must use
$(’.selectpicker’).selectpicker(‘val’, [‘Mustard’,’Relish’]);
instead of
$(”#status”).append(” <option disabled selected>SELECT</option>”); $(”#status”).append(” <option value=’MANUAL1’>MANUAL1</option>”); $(”#status”).append(” <option value=’MANUAL2’>MANUAL2</option>”);
Hope this helps 
Kindest Regards,
Design Reset Team
Thank you so much !! Great Support
You are most Welcome 
Hi.
I am in need of help, I cannot remove this bar horizontally, I will be very grateful if you can help me remove it.
Image: https://imgur.com/6lEk3Ar Source: http://pastie.org/p/6Y97xuRshVkg7GFQOwSCst
Thanks
Dear boizaum,
We have updated your code in the same file with two methods.
1. Code with Simple form layout
Form made by bootstrap form grid classes.
2. Code with Table Form Layout
In case if you still want to create your form in table format;
Updated Code Link
- https://pastebin.com/rGicsX3F
Note: Kindly replace the whole code.
Hope this helps 
Kindest Regards,
Design Reset Team
Thank you designreset! It worked!
You are most Welcome 
Hello, do you offer customization services? Do you work feature-based? If so, I would like to share the specs document with you. Feel free to shoot an email at mihairaulea at gmail.com
Hello foodorderingtools,
Thank you for contacting Design Reset.
Please check your email.
Kindest Regards,
Design Reset Team
Hi, your template is very beautiful, but i purchased it for my developer and he is saying that the images on the bootstrap theme are in SVG, is there any one of your template that is just in png and not svg.
Dear Kennedytade,
Thank you for contacting Design Reset.
The pictures provided inside assets/img folders are Placeholder images in jpeg format ( such as 90×90, 120×120, 400×168, etc. ) as well as svg’s ( that are used inside faq, contact us etc.)
Online images are just for demo purpose only and they are not included with the user files as per Envato and Themeforest policy.
Hope this helps 
Kindest Regards,
Design Reset Team
Dear Team,
How to move SUBMIT button on right side next to Mobile No textbox.
Kindly follow code :
<label for=””>First Name </label> <input type=”text” class=”form-control” id=”chk_firstname” name=”chk_firstname”> <label for=””>Mobile No 1</label> <input type=”text” class=”form-control” id=”chk_mobileno” name=”chk_mobileno”> <button type=”submit” class=”btn btn-primary mt-3” name=”chkduplicate”>SUBMIT</button> Screen for your ref : https://prnt.sc/wg7cugThank you
Dear DejaVu909,
Try the updated code
- https://pastebin.com/SR0Lfhfb
Hope this helps 
Kindest Regards,
Design Reset Team
Dear Team,
I have used bellow code as below :
<label for=”current_password”>First Name </label> <input type=”text” class=”form-control” id=”chk_firstname” name=”chk_firstname”> <label for=”new_password1”>Mobile No 1</label> <input type=”text” class=”form-control” id=”chk_mobileno” name=”chk_mobileno”><button type=”submit” class=”btn btn-primary mt-3” name=”chkduplicate”>SUBMIT</button>
Expecting output as below : https://prnt.sc/wgvmxpI hope it is clear now.
Thank you,
Thank you,
Dear DejaVu909,
Below is the updated code.
- https://pastebin.com/9GasxFd3
Hope this helps 
Kindest Regards,
Design Reset Team
Thank you so much for your support !!
You are most Welcome 
Dear Team,
How to make paging on right align for datatable.
Kindly follow screen link for your ref.
https://prnt.sc/wg6p95Thank you,
Dear DejaVu909
Navigate to plugins/table/datatable/ and open dt-global_style.css
After that find
div.dataTables_wrapper div.dataTables_paginate {
margin: 0;
white-space: nowrap;
text-align: right;
display: inline-block;
}
- https://pastebin.com/BNqM1uWt
and update float right property
- https://pastebin.com/0wf2uaRU
Hope this helps 
Kindest Regards,
Design Reset Team
Thank you
You are most Welcome 
Hello, I really like the theme. I’m having an error, can you help me?
I have imported the menu section into a different file as header.php. I am linking my website with the admin theme. Data disappears in admin theme when I write code to retrieve data. I would be glad if you could help with this.
Sample; 1 -> https://ibb.co/tK2VLWK (I haven’t written the data retrieval code yet) 2 -> https://ibb.co/9Y8GJRq (Data retrieval code) 3 -> https://ibb.co/m6DDM2x (When I save the Data import code in the header.php file, the theme breaks.)
Dear efsovaliant,
Thank you for contacting Design Reset.
Below mentioned could be the few case scenarios related to this issue;
1. Most common case could be your PHP code may be retrieving data but blocking the frontend to get rendered.
2. There would be PHP error which might be hiding under the navbar section.
3. Some JS are not rendering properly. ( Kindly check the console for error and let us know if any )
Hope this helps 
Kindest Regards,
Design Reset Team
Impressive Theme, i wanted to know, how do i hide the sidebar (menu bar) by default, when user click the Hamburger icon, then only the menu has to come. Please advice. Thanks Hari
Hello Hari,
Thank you for contacting Design Reset
We have alternate menu pre-build with theme as per your need. Please check links mentioned below;
- https://designreset.com/cork/ltr/demo3/starter_kit_alt_menu.html
- https://designreset.com/cork/ltr/demo4/starter_kit_alt_menu.html
Hope this will help 
Kindest Regards,
Design Reset Team
Hi , This is Hari, regarding the CORK theme, Impressive theme, But i am trying to accomplish one task with that theme, I wanted to close the sidebar by default, Means by default, i don’t want to see the menus, when i click the Hamburger icon, then the menu has to be come.
Please update me. Thanks Hari
Hello Hari,
Thank you for contacting Design Reset
We have alternate menu pre-build with theme as per your need. Please check links mentioned below;
- https://designreset.com/cork/ltr/demo3/starter_kit_alt_menu.html
- https://designreset.com/cork/ltr/demo4/starter_kit_alt_menu.html
Hope this will help 
Kindest Regards,
Design Reset Team
Hello, I’m Using Cork Theme, Very Good, datatables Column Headings I’m writing in lowercase, but All Are Capital Letters turning into, I am using demo6 theme How do I cancel capitalization
Dear ibrahimayhan,
Thank you for contacting Design Reset.
It’s because the uppercase is already defined inside css. To remove that kindly navigate to /plugins/table/datatable/ and open dt-global_style.css.
Then, find the code mentioned below
- https://pastebin.com/J9PuAQaz
and update it.
- https://pastebin.com/E2eMySeZ
Hope this helps 
Kindest Regards,
Design Reset Team
can i know when the laravel 8 version coming out
Hello rasyidialwee,
Thank you for contacting Design Reset.
We will be updating Cork Admin Template to Laravel 8 version within 2 weeks.
Kindest Regards,
Design Reset Team
Hello,
We are developing an application with .Net core Razor Pages and using demo2. We want to use cascading and searchable drop-down menus. First, we used the select2 component. But we had some problems with the ajax calls, such as the controls not being able to update each other. Then we tried the bootstrap-select component. What we want there is exactly a control like the link (https://plnkr.co/edit/c2XDSXipVnbMkjaM?preview),
but the result we get you can see here : https://pasteboard.co/JH3vvQl.png
Dear modernltd,
Kindly follow the select 2 docs to retrieve your data.
Hope this helps 
Kindest Regards,
Design Reset Team
Hello good afternoon all right? I did the procedure according to the document informed, but when I go to access it is getting unconfigured, and the files in the folder cork \ Laravel \ ltr \ horizontal-light-menu are with the vertical menu. Do you have a contact email?
Dear Rodrigo Pais,
Thank you for contacting Design Reset.
Kindly,grant us some time as we will get back to you with the solution.
Kindest Regards, Design Reset Team
Dear Rodrigo Pais,
We have checked all the possibilities using Laravel 7 and 8, but we are unable to replicate the issue, you are facing.
Kindly check and share a video of your installation process and the working code as well.
Kindest Regards,
Design Reset Team
Hello, I just bought your template, I would like to know if you have any videos explaining the installation of it in Laravel?
Hello rodrigompais,
Thank you for contacting Design Reset.
Currently, we don’t have any installation videos of Laravel, but you can follow the step by step installation process from the documentation provided;
- https://designreset.com/cork/documentation/laravel/installation.html
Hope this helps 
Kindest Regards,
Design Reset Team
Hello! We bought your theme, but we need to develop the layout from your design elements for our frontend developer. Can we get your project in Figma or Adobe XD to work with it?
Hello timon777,
Thank you for contacting Design Reset.
Right now, we don’t have any figma or Adobe XD files. But we will be launching then in about a month time.
Kindest Regards,
Design Reset Team
Hello! We bought your theme, but we need to develop the layout from your design elements for our frontend developer. Can we get your project in Figma or Adobe XD to work with it?
Hello timon777,
Thank you for contacting Design Reset.
Right now, we don’t have any figma or Adobe XD files. But we will be launching then in about a month time.
Kindest Regards,
Design Reset Team
it’s a great theme, however i’d like to programmatically replace css with sass is there’s any solution to replace the directories noting that i can’t find bootstrap in scss
Dear eslamene
Thank you for contacting Design Reset.
If you want bootstrap SASS you can download it from it’s github link mentioned below;
- https://github.com/twbs/bootstrap/tree/v4.5.0
Note : – It’s Bootstrap version 4.5.0 which is currently used by CORK Admin.
Hope this helps:)
Kindest Regards,
Design Reset Team
Hi can u please implement toggle of Rtl to ltr as you did on dark to light
Dear Dales5656,
Thank you for contacting Design Reset.
You can implement by using the same code as dark and light. But make sure to add a refresh function when it save to database.
Some JS like charts etc needs to refresh in order to change there direction.
Hope this helps:)
Kindest Regards,
Design Reset Team
If I purchase can you help me and add that
Hello Dales5656,
Yes, we will help you to implement switch functionality from RTL to LTR.
Kindest Regards,
Design Reset Team