Discussion on Cork - Bootstrap 5 Admin & Laravel Dashboard Template

Discussion on Cork - Bootstrap 5 Admin & Laravel Dashboard Template

Cart 7,395 sales
Well Documented

designreset supports this item

Supported

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

1060 comments found.

Hi I have a problem with the invoice, sometimes the invoice can be more than one page, but it is print just one page, the invoice not complete. best regard

Dear Al-Alloush,

Kindly check your chrome settings

or

Follow the links mentioned below;

1) https://support.google.com/chrome/forum/AAAAP1KN0B0sHcxqOH2F7U/?hl=en-GB

2) https://support.google.com/chrome/answer/1069693?hl=en&vid=0-256381902768-1487066481951&visit_id=637232445221147111-2481825033&rd=1

If the issue continues, kindly share a screenshot of your print screen of chrome as well as default screen

Kindest Regards,

Design Reset Team

Hi there, I’ve just bought this template – pretty nice work so far!

Only one small issue. I’m trying to use starter kit for demo10 and the scss files are already filled up with the values instead of the variables. This doesn’t happen in demo1 but happens in most of the other demos I’ve checked.

eg: demo10 > ~/_structure/_sidebar.scss shows .sidebar-theme #compactSidebar { background: #304aca;

instead of .sidebar-theme #compactSidebar { background: $m-color_22;

Is this normal and is there a way to get the sass files with the variables instead of the values?

Thanks a lot, cheers

Dear blitu,

Thank you for contacting Design Reset.

Yes, you can use SCSS Variables by simply adding the variable of the color.

Hope this helps.

Kindest Regards,

Design Reset Team

Looks great, it will be use on a Laravel 7 project, will you have Angular version any time soon?, Angular, material design… that can speed up our work for backend-development… Thank you for such great boilerplate …

Dear Tanke,

Thank you for contacting Design Reset.

We don’t have any plan right now for converting Cork Admin into Angular Project.

But, its possible we will convert it in future.

Kindest Regards,

Design Reset Team

Thanks for the fast reply… I have another question to complete my project, I don’t know why when I change the screen size the scrollbar disappear and I can’t scroll… I think it is related to perfectscrollbar but I couldn’t fix it

Dear Jasobeam,

Thank you for contacting Design Reset.

Try the following things

1. After changing the screen size try to refresh the page.

2. Check for the .sidebar-noneoverflow class if it does exist on resize of the screen.

If the issue is same kindly

Let us know

1. The demo you are using.

2. Share the screenshot with us.

3. And also the code

Kindest Regards,

Design Reset Team

How can I change the counter speed?

Dear Jasobeam

To control the speed of counter use [speed: 6000] parameter.

Below is the example code.


$('.s-counter2').countTo({
    from: 0,
    to: value,
    speed: 6000,      --------> Like this
    formatter: function (value, options) {
        return value.toFixed(options.decimals).replace(/\B(?=(?:\d{3})+(?!\d))/g, ',');
    }
});

For more information kindly refer to the following link -> https://github.com/mhuggins/jquery-countTo

Note: – We have already added speed parameter in our Cork Admin Template counter examples -> [speed: cSpeed].

Kindest Regards,

Design Reset Team

Hello, Please I want the sidebar to be collapsed by default in my page. I am using the RTL version. Thank you,

Dear aymanmu,

Try adding .alt-menu class in body tag.

To upload screenshots kindly use; https://imgur.com/upload

Kindest Regards,

Design Reset Team

it works. Thank you

You are most Welcome :)

Hello

We have issue in sidebar integration it’s being closed even we click on it.How we manage it open we are following same thing what you have in code.

Thanks

Hello darjimehul,

Thank you for contacting Design Reset.

Kindly provide us the name of demo link, screenshot or your code so that we can help you effectively.

Kindest Regards,

Design Reset Team

I have a codeigniter system, does it work to apply your theme?

Hello Weboox,

Thank you for contacting Design Reset.

Cork Admin Dashboard is a front-end template based on Bootstrap and Sass. It contains HTML, CSS and JS files.

You can easily integrate this template in back-end PHP frameworks like Laravel or Codeigniter if you have proper knowledge of that framework.

Hope this explanation Help.

Kindest Regards,

Design Reset Team

$(‘textarea.textarea’).maxlength({ placement:”top-right” });

maxlength -> Uncaught TypeError: $(...).maxlength is not a function

can you help me pls ?

Dear bahax41,

Thank you for contacting Design Reset.

Kindly check the maxlenght main Js file is included or not.

If still the issue is same. Please, send us you code ( HTML, Js ) as well as you inspect screenshots.

Kindest Regards,

Design Reset Team

Thank you, I got the spelling wrong.

Hello, I’ve noticed that the PDF function in the HTML-export of Datatables is disabled, or at least, by including the “pdf” Button, it does not appear next to the other buttons such as CSV, Excel or Print. The fact is that I need to include the ability to export to PDF a page, and maybe not necessarily a table.

Something like that

buttons: [ { extend: ‘copy’, className: ‘btn’ }, { extend: ‘csv’, className: ‘btn’ }, { extend: ‘excel’, className: ‘btn’ }, { extend: ‘pdf’, className: ‘btn’ }, { extend: ‘print’, className: ‘btn’ } ]

Greetings

Dear mangazo,

Thank you for contacting Design Reset.

Kindly refer to the following link mentioned below;

1) https://datatables.net/extensions/buttons/examples/initialisation/export.html

2) https://datatables.net/reference/button/pdf

Kindest Regards,

Design Reset Team

Thank you

You are most Welcome :)

Is there a wordpress theme that matches this admin template?

Hello Gkaffen338,

Thank you for contacting Design Reset.

We are not sure if there is any Admin Template for WordPress back-end. But, If you are looking for a front-end WordPress theme, we think the one mentioned below is a close match;

https://themeforest.net/item/saasland-creative-wordpress-theme-for-saas-business/23362980

Kindest Regards,

Design Reset Team

Hello, it doesn’t work when I try to install dropzone.js on your system. Why did you use a different plugin instead of Dropzone.js?

Hello Aercann,

We have used dropify and File Upload With Preview plugin. But you can still use dropzone.js

Kindly follow the steps mentioned below.

1. Download the dropzone file uploader form its main site.

2. Copy dropzone main js and css from its download file.

3. Past the main js and css inside plugins ( Kinldy make a seperate folder if you want )

4. Link the css and js files in you application.

5. Put the following code mentioned below.


HTML

<form class="dropzone-file-area dropzone dropzone-file-area--secondary" action="plugins/dropzone/upload.php" id="dropzone-file-area-one">
    <div class="dropzone-file-area__msg dz-message needsclick">
        <h3 class="dropzone-file-area__msg-title">Single File Upload.</h3>
        <span class="dropzone-file-area__msg-desc">Drop file Here to upload</span>
    </div>
</form>


JS

var DropzoneDemo= {
    init:function() {
        Dropzone.options.dropzoneFileAreaOne= {
            paramName:"file",
            maxFiles:1,
            maxFilesize:5,
            addRemoveLinks:!0,
            accept:function(e, o) {
                "justinbieber.jpg"==e.name?o("Naha, you don't."): o()
            }
        }
    }
};
DropzoneDemo.init();

Hope this explanation helps.

But, If this still does not work kindly, send us;

a) Screenshots – (Of inspect element as well as you application where you are trying to apply dropzone.)

b) Code – (Share you code with us through pastebin link.)

Kindest Regards,

Design Regards,

Hahaha Great thank you

You are most Welcome :)

Hi I am really interested in buying your theme CORK wanted to check one thing.. will it work with Angular 9?

Hello akshaymarkande,

Thank you for contacting Design Reset.

Yes, Cork Admin Template can work with Angular 9 but you have convert it by yourself.

Kindest Regards,

Design Reset Team

Hi, can you tell me how can i integrate calendar with php, how to call particular function that will populate/delete/update data. thanks

Dear mkmittal,

Thank you for contacting Design Reset.

Kindly follow the link mentioned below;

1) https://www.webslesson.info/2017/12/jquery-fullcalandar-integration-with-php-and-mysql.html

2) https://codingshiksha.com/javascript/jquery-fullcalendar-integration-using-php-mysql-ajax/

Kindest Regards,

Design Reset Team

Thank you for the awesome template. Is there a way to sort datatable based on date and time? On page table_dt_ordering_sorting.html, “order”: [[3, “desc”]], I changed it to “order”: [[0, “desc”]], 0 = datetime field, but the results were messy and could not appear in order based on the date and time. Are there any suggestions? thank you

Hello petersin0172,

Thank you for contacting Design Reset.

Please check the link mentioned below to sort dataTables date and time

1) https://stackoverflow.com/questions/37814191/how-to-sort-datatables-with-date-in-descending-order

2) https://stackoverflow.com/questions/44226347/datatable-date-time-sorting-plug-in-not-ordering

3) https://stackoverflow.com/questions/12003222/datatable-date-sorting-dd-mm-yyyy-issue

Hope this will Help!

Kindest Regards,

Design Reset Team

and how to make print area get max height

thank you

Dear diorz38,

Just add max-height: 250px;

Inside @media print at the same place where you have apply margin i.e. .doc-container

.doc-container {
max-height: 0px;  -- add it
}

Kindest Regards,

Design Reset Team

Hai, i just want to know how to make margin in media print in invoice reduce to about 5px from top edge, right now is to far from top edge.

thank you

Hello Diorz38,

Thank you for contacting Design Reset.

To apply 5px more margin.

Open the invoice.css file

and inside @media print you will see the .doc-container

Make the following changes to it.

Old code :
.doc-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
Updated Code:
.doc-container {
    position: absolute;
    left: 5px; --- updated
    right: 5px; --- updated
    top: 5px; --- updated
    bottom: 5px; --- added
}

Hope this Will resolve your issue.

Kindest Regards,

Design Reset Team

Hello,

Can I ordered it and use it for my web app , and then I sell the app with the source on the website ,like codecanyan.net .

I will buy it if the license allow.

Thx

Hello YiiRise,

Thank You for contacting Design Reset.

Yes you can order it for the Web App. In order to create a product intended to be sold on codecanyon.net, you have to purchase commercial license.

Hope this Helps!

Kindest Regards,

Design Reset Team

Hello, i want to ask for this issue Source map error: Error: request failed with status 404 Resource URL: http://localhost:8081/myapps/resources/bootstrap/js/bootstrap.min.js Source Map URL: bootstrap.min.js.map

how to fix that?

Dear muchanto93,

Thank you for contacting Design Reset.

If your application is working fine, you don’t have to worry about .map files errors.

Although, If it’s affecting your application functionality then kindly send screenshot of your browser inspect element.

Kindest Regards,

Design Reset Team

hi how to inlude summernote editor this template

Dear halildolas21,

Thank you for contacting Design Reset.

To include the summernote editor follow the steps mentioned below;

1- Download the file.

2- Copy its source css & js

3- Paste it inside the plugins folder

4- At last link css and js file.

5- Write a trigger code for summernote

Hope the above resolution Help.

Kindest Regards,

Design Reset Team

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