Discussion on Cork - Bootstrap 5 Admin & Laravel Dashboard Template

Discussion on Cork - Bootstrap 5 Admin & Laravel Dashboard Template

Cart 7,393 sales
Well Documented

designreset supports this item

Supported

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

1060 comments found.

Hello! Can you tell me if the image resources in the demo template are included in the official purchased file?

Hello MoSang66,

Thank you for contacting us.

Images in the online files are used for demo purpose only. The customer copy is available with placeholder images as per Envato policy.

Kindest Regards,

Design Reset Team

how to fix this, https://ibb.co/4j1VK3D

Dear rohmnnn,

Thank you for contacting us.

Kindly follow the link mentioned below :

https://stackoverflow.com/questions/46542428/warning-added-non-passive-event-listener-to-a-scroll-blocking-touchstart-even

Hope this helps :)

Kindest Regards,

Design Reset Team

How to change the display to full page width dashboard (16:9)?

Dear dinarannetwork,

Thanks for contacting Design Reset

Dashboards are already in full-width. Could you please share a screenshot and more details?

Kindest Regards,

Design Reset Team

i purchased your product i got laravel code i want html bootstrap code there is no option to download html code

i purchased this product but i got laravel code but i want html & bootstrap code

Dear gaganladdha1985,

Thanks for contacting us.

The downloaded file of the Cork Admin Template contains 4 main folders.

1. Design Files 2. Documentation 3. HTML 4. Laravel

- Navigate to HTML folders.

- Inside HTML folders -> choose LTR or RTL.

- Inside : [LTR/RTL] choose your demo.

Below is the Image of the main folder structure.

- https://prnt.sc/16w6b1f

If still, you did not get the HTML files. Try to RE-Download Cork Admin from your account.

Let us know. If you have any further questions.

Kindest Regards,

Design Reset Team

Hey there. Can you please help me organize the imports for both scss/css and js files so I can use my webpack config file to do its magic.

What I need is a single entry file for scss/css and single file for js.

for example: 1. app.scss will be the entry point for all scss files 2. app.js will be the entry point for all js files

I spent many hours trying to get it to work but still haven’t figure it out.

Thank you.

Dear TextYB,

Thank you for contacting us.

Kindly follow the link mentioned below

- https://scotch.io/tutorials/setting-up-webpack-for-any-project

Kindest Regards,

Design Reset Team

I purchased the cork template as per the purchase code daf0f32f-1862-4201-9525-f5292bc2eda8 – Jun 21, 2021 from envato market. However, I am using a tutorial with the scriptcase tool that uses the previous version of the cork template. Is it possible for you to send me this previous version? Grateful for the understanding. Email: vicentepaulodecamargo@gmail.com

Hello vicentepaulodecamargo21,

Thank you for contacting us.

Email sent with download link.

Kindest Regards,

Design Reset Team

Hi There. I have a couple questions. 1. How to add zoom to images. I think it is a JavaScript Library. What it does basically is when click on a small image it zooms to full like a modal or light box image. 2. Where is bootstrap 5 version? When I was reading the comments I thought it would be included by now because you guys mentioned about 4 months ago you are going to include it.

Thank for an awesome theme.

Dear TextYB,

Thank you for contacting us.

1. How to add zoom to images. I think it is a JavaScript Library. What it does basically is when clicking on a small image it zooms to full like a modal or lightbox image.

- The lightbox is already included in the Components section—> https://designreset.com/cork/ltr/demo4/component_lightbox.html

But, you can also use GLightbox as it is more flexible—> https://biati-digital.github.io/glightbox/.

2. Where is the bootstrap 5 version?

Bootstrap 5 version is delayed as of now

Hope this helps :)

Kindest Regards,

Design Reset Team

Storage folder image is not showing. 1. Sample One: // return 404 2. filesystems.php ‘links’ => [ public_path(‘storage’) => storage_path(‘app/public’), ], 3. i ran this cmd also `php artisan storage:link` but still same issue

Sample code: src=”{{asset(‘storage/img/90×90.jpg’)}}”

yes that the page already in web.php. I’m just move your demo code to my laravel application

Dear mambaz,

Try inspecting the image element to check what actual link is created.

Kindest Regards,

Design Reset Team

Disregard my last message. I see I was in the wrong folder by accident. First template with a rtl and ltr version

Hi I am looking at the index.html file and it seems the entire design is inverted. Everything appears to be aligned to the right. How do I fix this so I can begin editing the files?

Hi,

I want to implement fontawesome. To do this I have followed below steps :

1. Got fontawesome kit and use it in <head> tag
2. Use to use “user” icon in login screen

But the output not came as expected. details are as below

https://prnt.sc/15ya0j8 – Server Kit Generated Code

https://prnt.sc/15yd4u3 – Locally uploaded Fontawesome file

https://prnt.sc/15ya6rr – Output

What class/css should I use before/after to make it in a proper way ?

Thanks in advance

Dear xlinkinfocom,

Thank you for contacting us.

Follow the steps mentioned below;

1. Navigate to assets/css/authentication/ and open form-2.css file

2. Add the following CSS mentioned below

.form-form .form-form-wrap form .field-wrapper i[class=*”fa-”] { position: absolute; left: 12px; color: #888ea8; fill: rgba(0, 23, 55, 0.08); width: 20px; height: 20px; }

Hope this helps :)

Kindest Regards,

Design Reset Team

Dear all, Is there a possibility to integrate/use this template in wordpress? Thanks

Dear irdr,

Thank you for contacting us.

Cork admin template is built pure HTML CSS and JS.

But, yes you can still use it in WordPress and you have to convert the template to WordPress on your own.

Kind Regards,

Design Reset Team

Hello designreset,

Thank you for this work.

I have one question; dark mode is very slowly page upload compared to light mode in enterprise admin theme.

can we fix this?

Dear machinist,

Thank you for contacting us.

Yes, you can make it faster. By saving the Dark and light data into Local storage.

In this case, you have made some major changes inside app.js, loader.js files

Note: The changes are major, as currently it saves the data in cookies.

Let us know if you have any queries or issues.

Kindest Regards,

Design Reset

When open action button in datatables, the box stay behind header when are one or two rows. Print: https://i.imgur.com/yUvMjj6.jpg

Dear TJThiago,

Try to add and remove a dynamic class on Add new and delete button click.

Explanation

Let take the class name as [.your_class]

When clicked on the delete button check whether the table has two rows, if yes then add a class (i.e your_class ) and remove the class (i.e your_class) when clicked on the add new button, but before removing the class check whether the rows are greater than 2.

Also,

Add the following CSS

.table.your_class > tbody > tr:nth-last-child(2) > td .dropdown:not(.custom-dropdown-icon):not(.custom-dropdown) .dropdown-menu.show { top: 0!important; }

Note:-

1. The click events for delete buttons are already defined in the invoice-list.js that is inside assets/js/apps/ 2. Add the following js to check row count $(”#Table_id tr”).length;

Hope this helps :)

Kindest Regards,

Design Reset Team

Awesome, thank you – Any plans to implement a right side sliding menu?

Hello herSweetums,

At the moment we don’t have any plans to launch any new demo.

Kindest Regards,

Design Reset Team

Hi there!

Is there a mockup for voice and video calling?

Thank you, Juan Martinez

Hello herSweetums,

Thank you for contacting us.

In three demos, we have voice and video calling screens;

- https://designreset.com/cork/ltr/demo15/apps_chat.html

- https://designreset.com/cork/ltr/demo14/apps_chat.html

- https://designreset.com/cork/ltr/demo13/apps_chat.html

Kindest Regards,

Design Reset Team

i have a problem, when i use flatpickr into modal, flatpickr form always behind modal i’ve tried using shown.bs.modal, z-index > 1050 but it can’t work. can you provide another solution?

Dear endytok,

Thank you for contacting Design Reset

Kindly add the CSS mentioned below


.flatpickr-calendar.open {
    display: inline-block;
    z-index: 99999!important;
}

Note: Add the CSS to the page where you are facing the issue in the modal.

Hope this helps :)

Kindest Regards,

Design Reset Team

Hello, I created this laravel project on my local. Everything working fine except the images are not loading. I am using asset(‘public/assets/img/90×90.jpg’) Image is not showing, but the path is correct.

Thanks.

Dear deepak13,

You have to store the images inside /storage/app/public/img and then, link your storage folder to the public folder by using the [php artisan storage:link] command.

Also, your path is incorrect, change it to -> asset(‘storage/img/90×90.jpg’)

For more information kindly follow the link mentioned below.

- https://laravel.com/docs/8.x/filesystem

Hope this helps :)

Kindest Regards,

Design Reset Team

Hello,

i want use “ScrumBoard” in mobile but its work not well, users cannot drag and drop. Works fine with computer. The same error occurs when using the device toolbar on Chrome.

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