68 comments found.
hello how do i change the stats? I want to show yearly, monthly and daily ones separately. Then, where do I edit the statistical results?
Dear draxam,
Thank you for contacting us.
In order to change the statistics or any chart in any dashboard. Kindly navigate to assets/js/[your_dashboard_name]/[dashboard_custome.js]
Hope this helps 
Kindest Regards,
Design Reset Team
Hello, multiple file upload with preview doesn’t show the uploaded images, would you fix it in the next versions ?
Dear baturhankahraman,
Thank you for contacting us.
We will surely fix this issue in the future updates.
Kindest Regards,
Design Reset Team
Hello, is there any new about multiple file upload ?
Dear baturhankahraman
We are working on it. If you want you can apply filepond plugin. As we will be applying that plugin in an upcoming version.
filepond -> https://pqina.nl/filepond/
Kindest Regards,
Design Reset Team
disregard
hello I’d like to thank you again for this great theme i really enjoy editing it , however i have a little problem i want to add button in the left above the search bar in the image https://prnt.sc/iDK-gOJdY-zs , i do not know a lot about css and js i have searched all night in the web no solution i’d appreace it if you helped me
Dear urek123,
Thank you for contacting us.
Kindly follow the link mentioned below
https://datatables.net/examples/advanced_init/dom_toolbar.html- https://stackoverflow.com/questions/32549987/adding-a-button-to-toolbar-with-jquery-datatables
Hope this helps 
Kindest Regards,
Design Reset Team
thanks that helps a lot

hi i’d like to thank u for this great template however , i have a little problem i want to check box column to ecommerce_product.html page same as ecommerce_orders.html i edited table id to ecommerce-order-list and it worked but in console i have this error uncaught referenceerror progressbar is not defined
Dear urek123,
Thank you for contacting us.
Seems like you have copied the code form order.js but you forget to remove - new ProgressBar.Circle
Note: – The progressbar code is used for Order Status
Hope this helps 
Kindest Regards,
Design Reset Team
Is there any installation instructions or videos that are more comprehensive than what’s been posted here or is available in the theme installation instructions? There seems to be a lot of missing context in terms of starting points, server environment, etc.
Hello danward28,
Thank you for contacting us.
Currently we don’t have any installation videos for this version.
You can check our other product with better documentation and installation guide. Check the link below;
- https://themeforest.net/item/cork-responsive-admin-dashboard-template/25582188
Kindest Regards,
Design Reset Team
Can this be used for Django based application?
Hello das_primesophictech,
Thank you for contacting us.
This is HTML admin template. You can further add the same to your Django project.
For reference, check out the link below on ow to add a bootstrap template to your Django project;
- https://www.youtube.com/watch?v=AW4NLdPMzlM
Hope this helps 
Kindest Regards,
Design Reset Team
Hi, Default css files and sass files have different values. For example: I didn’t change any value in Sass files, I compiled with gulp only. Default Main.css >> Body Background value is #f0f0f0 Main.css compiled from Sass >> Body Background value is #eaeef1
It seems that default css files are not generated from sass files. They are not synchronized and they have a lot of differences.
Dear Textoni,
Thanks for your feedback.
Right now you can change the default SASS colors with CSS.
Kindest Regards,
Design Reset Team
Dear keithmin,
Thank you for contacting Design Reset
Yes, you can use Gridstack to setup your dashboard layout with our current widgets. But you have to make functionality by your own to make it work.
Kindest Regards,
Design Reset Team
Do you plan do make a version with Bootstrap 5 ?
Hello eyal7773,
Thank you for contacting Design Reset.
We have no plans to upgrade equation for Bootstrap version 5, but we are in process to update our second product “Cork Admin Template” to Bootstrap version 5 soon. You can check from the link mentioned below;
- https://designreset.com/cork-admin/
Kindest Regards,
Design Reset Team
Hello,
I was trying to make an edit modal through multiple tables, I’m having issues selecting ids from 2nd page (I inserted rows through mysql,php), it works just fine for first page but doesnt work on rows >10.. can you help me out. I made a javascript code : $(document).ready(function() { $(’.dropdown-item’).on(“click”, function(){ var id = $(this).attr(‘id’); var id1 = $(this).closest(“tr”).find(“td:first-child”).html(); $(’#qytetiedit’).on(“keyup”,function(){ var qyteti = $(this).val(); $(’#ndryshoqyt’).attr(“href”,”process.php?id=”id“&qyteti=”+qyteti); })
Dear pasha667,
Kindly share your working code on jsfiddle or codepen. Which replicate the same issue. So that we can help ASAP.
Although, follow the links mentioned below;
- https://www.phpzag.com/create-live-editable-table-with-jquery-php-and-mysql/
- https://makitweb.com/edit-delete-datatables-record-with-ajax-and-php/
- https://stackoverflow.com/questions/58206772/load-datatable-data-to-a-edit-modal
- https://stackoverflow.com/questions/27559872/how-to-edit-data-in-mysql-through-a-modal
- https://www.webslesson.info/2016/10/php-ajax-update-mysql-data-through-bootstrap-modal.html
Hope this helps 
Kindest Regards,
Design Reset Team
Layout is very zoomed, how can I zoom out, I mean everything is so big, I want to see more data in screen, how can I do it ?
Hello goldykhurmi,
Thank you for contacting Design Reset.
Please check your browser zoom levels, it must be at 100%
If it is on 100% and still you feel that everything is zoomed in, then you have to edit layout to fit more data according to your needs.
The standard font size in body is 14 px or 0.875 rem
Kindest Regards,
Design Reset Team
Hi! Can you please guide me on how I can create a different scroll for the sidebar menu from the main content page? Like if I scroll the main page the sidebar will not scroll and if I scroll the sidebar menu top to the bottom main content page will not scroll and the website logo will be fixed on the top left corner of the page.
Dear princegoel072
Thank you for contacting Design Reset.
To add scroll in sidebar first you have to make sidebar fixed
.sidebar-wrapper {
position: fixed; ------------------ added
}
and then you have to min-height auto calculation
#sidebar ul.menu-categories {
min-height: calc(100vh - 900px); ------------------ added
overflow: visible;
}
and add margin-left (according to sidebar width).
#content {
width: 50%;
flex-grow: 8;
margin-top: 59px;
margin-bottom: 67px;
margin-left: 255px; ------------------ added
}
At last you have to add mCustomScrollbar js code
$("ul.menu-categories").mCustomScrollbar({theme:"minimal",scrollInertia:1e3})
Hope this helps 
Kindest Regards,
Design Reset Team
I have done everything you mentioned above but when I am adding the js code on the page <script src=”plugins/scrollbar/jquery.mCustomScrollbar.concat.min.js”></script> <script> $(document).ready(function() { $(“ul.menu-categories”).mCustomScrollbar({theme:”minimal”}); }); </script>
the vertical scroll shows on the sidebar panel but not scrolling.
Dear princegoel072,
Kindly check the following :-
1. Check the console for error.
2. Check whether the height is mentioned at the right place.
If the issue still the same kindly provide us a screenshot or a working example.
Hope this helps 
Kindest Regards,
Design Reset Team
As you mentioned I have added the given code in the file and line mentioned after them In File Structure.css at line 539 .sidebar-wrapper { width: 255px; position: fixed; } at line 586 #sidebar ul.menu-categories { padding: 5px 8px; min-height: calc(100vh – 900px); overflow: visible; } In File main.css at line 275 #content { width: 50%; flex-grow: 8; margin-top: 59px; margin-bottom: 67px; margin-left: 255px; } In File accounting_dashboard.html for mCustomScrollbar JsCode added on the page level I am testing <script src=”plugins/scrollbar/jquery.mCustomScrollbar.concat.min.js”></script> <script src=”bootstrap/js/popper.min.js”></script> <script src=”bootstrap/js/bootstrap.min.js”></script> <script src=”assets/js/app.js”></script> <script> $(document).ready(function() { App.init(); $(“ul.menu-categories”).mCustomScrollbar({theme:”minimal”,scrollInertia:1e3}); }); </script> <script src=”assets/js/custom.js”></script>
Also there is no option to attach the image here
Dear princegoel072,
Kindly attach the image to the link mentioned below.
Kindest Regards,
Design Reset Team
Dear princegoel072
First of all open app.js
Add the code mentioned below inside app.js.
var desktopFunctions = {
activateScroll: function() {
$("ul.menu-categories").mCustomScrollbar({
theme: "minimal",
scrollInertia: 1000
});
},
}
Remember you should have to apply the code below mobileFunction. So it should be like
----------------
Complete Code
----------------
var mobileFunctions = {
activateScroll: function() {
$("#sidebar").mCustomScrollbar({
theme: "minimal",
scrollInertia: 1000
});
},
}
var desktopFunctions = {
activateScroll: function() {
$("ul.menu-categories").mCustomScrollbar({
theme: "minimal",
scrollInertia: 1000
});
},
}
Now,
Take trigger the code inside _desktopResolution => onRefresh and onResize
var _desktopResolution = {
onRefresh: function() {
var windowWidth = window.innerWidth;
if ( windowWidth > MediaSize.md ) {
toggleFunction.deactivateScroll();
desktopFunctions.activateScroll(); ----------> Tigger Here
categoryScroll.default();
// console.log('On Desktop Refresh');
}
},
onResize: function() {
$(window).on('resize', function(event) {
event.preventDefault();
var windowWidth = window.innerWidth;
if ( windowWidth > MediaSize.md ) {
$('footer .footer-section-1').removeClass('f-close');
toggleFunction.deactivateScroll();
desktopFunctions.activateScroll(); ----------> Tigger Here
// console.log('On Desktop Resize');
}
});
}
}
As you have triggerd the code now you need to create a deactivateScroll code to be deactivated on mobile
So for that you have to update desktopFunctions code. Below is the updated snippet
var desktopFunctions = {
activateScroll: function() {
$("ul.menu-categories").mCustomScrollbar({
theme: "minimal",
scrollInertia: 1000
});
},
// Updated deactivateScroll
deactivateScroll: function() {
$('ul.menu-categories').mCustomScrollbar("destroy");
},
}
Now trigger the function function inside _mobileResolution => onRefresh and onResize
var _mobileResolution = {
onRefresh: function() {
var windowWidth = window.innerWidth;
if ( windowWidth <= MediaSize.md ) {
// console.log('On Mobile Refresh');
categoryScroll.mobile()
mobileFunctions.activateScroll();
desktopFunctions.deactivateScroll(); ------> Triggered Here
}
},
onResize: function() {
$(window).on('resize', function(event) {
event.preventDefault();
var windowWidth = window.innerWidth;
if ( windowWidth <= MediaSize.md ) {
// console.log(MediaSize.md);
mobileFunctions.activateScroll();
desktopFunctions.deactivateScroll(); ------> Triggered Here
// console.log('On Mobile Resize');
}
});
}
}
Note:- The css you have applied earlier, Kindly do not remove them.
Hope this helps 
Kindest Regards,
Design Reset Team
Dear princegoel072,
All the CSS and JS code that we have provided earlier works fine.
You just need to make an update in CSS [#sidebar ul.menu-categories] min-height to height.
sidebar ul.menu-categories {
height: calc(100vh – 78px); }
Hope this helps 
Kindest Regards,
Design Reset Team
The above code work perfectly for the big screen but Sorry to inform you that when I test the mobile response the side bar is not scrolling.
Dear princegoel072,
If the issue is related to the height try to decrease or increase the height on mobile.
If that does not work. Kindly share a screenshot of your issue.
Hope this helps 
Kindest Regards,
Design Reset Team
thanks it worked
You are most Welcome 
Where can i get full documentation wtih sample codes? like on cork
Hello jimcruz21,
Thank you for contacting Design Reset.
Please find link mentioned below;
- https://designreset.com/cork/documentation/
Kindest Regards,
Design Reset Team
when i try to checkbox with checked , it’s not working
why ?
Dear mikelws,
Thank you for contacting Design Reset.
Kindly try the following links mentioned below.
- https://stackoverflow.com/questions/426258/setting-checked-for-a-checkbox-with-jquery
- https://www.tutorialrepublic.com/faq/how-to-check-a-checkbox-is-checked-or-not-using-jquery.php
If this do not solve you problem. Kindly provide more details about your issue for example your code, screenshot
Hope this helps:)
Kindest Regards,
Design Reset Team
sir, when RTL support provide?
Hello aadharshila,
Thank you for contacting Design Reset.
We currently have no plans of RTL version.
For RTL version you can check our Cork Admin Template;
- https://designreset.com/cork-admin/
Kindest Regards,
Design Reset Team
Hi, I have an application already created and I just need to overwrite the boostrap uikit. How should I do it without installing all the packages? Thank you
Dear guillermoac,
Thank you for contacting Design Reset.
For using Ui Kit you have to use main.css file for default component style such as : buttons etc.
and
For using the designs of tabs, accordions you have to use them from assets/components/[All css files] and assets/elements/[All css files]
Hope this helps 
Kindest Regards,
Design Reset Team
Hi. Please guide me how to link your dashboard with my data source (Sharepoint lists, SQL database) so your charts can reflect my data?
Dear harbime,
Thank you for contacting Design Reset.
You have to create an API to link the data or connecting the database directly.
Hope this helps 
Kindest Regards,
Design Reset Team
Hello,,, i stil learn to install this theme ,, how to install this theme in localhost or hosting??
Dear mail_tl,
Thank you for contacting Design Reset.
Note: The steps mentioned below will take place after the extraction of the purchase file
1. Without Node.js
a. Copy the extracted folder into the localhost.
b. Run your localhost server.
c. Open the following link: localhost/cork
2. With Node.js
a. Copy the extracted folder into the localhost.
b. Run npm install.
c. After the npm pack is downloaded. Run the following command mentioned below.
For LTR – gulp watch:demoX
Note: X denotes demo number
Kindest Regards,
Design Reset Team
its compatible with OpenCat or not ?
Hello choukiba,
It is not compatible with OpebCart.
Kindest Regards,
Design Reset Team