Discussion on HUD - Bootstrap 5 Admin Template

Discussion on HUD - Bootstrap 5 Admin Template

Cart 1,894 sales
Well Documented

SeanTheme supports this item

Supported

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

193 comments found.

Hey Sean,

I’m using this as a bug report. The following problem, if you have a main card & in this main card further smaller cards & you then use the feature “Expand/Compress” for the main card. Is there a visual error with the small inner cards. Apparently, I think this has to do with the ‘card-body’ of the small cards. The small cards are then no longer displayed. They are only a few pixels in size.

Greetings Mason

Hi,

For that case, you may try to add the following css

body .card.card-expand .card-body { flex: initial; } body .card.card-expand > .card-body { flex: 1; }

Best Regards, Sean.

Thank you. It worked.

From: ’.card.card-expand .card-body { flex: 1 0 0;} To: ’.card.card-expand .card-body { flex: initial;}

Have a nice day sir. I’ll finish the review too.

Greetings Mason

Hi Mason,

Thank you for your feedback, and I’m glad it worked! Your support is our motivation to keep moving forward.

Best Regards, Sean

Hello Sir. I purchased this theme using a friend’s email. And now there are some new updates i would love to access them. I have my purchase code i could share at will. Kindly Advise.

Hi,

Unfortunately you might need to have the account that used to purchase the template in order to download the latest version of template.

Best Regards, Sean.

Hey Sean, is there documentation on how to use and configure the Masonry cards? thanks.

Hi,

You may refer to their official documentation for more information.

https://masonry.desandro.com/

Best Regards, Sean.

I bought this template and have been working on it for more than a year Is it possible to make a mini sidebar in the next versions

Hi,

Thank you for your comment and feedback. We will take it as todolist in our future updates.

Best Regards, Sean.

Hi, I bought the HUB template and in the documentation there is the version for angular but in the file we downloaded we do not find the angular template

Hi,

For your information, the HTML version and angular version is different version. Can you share to us which documentation for HTML version shows there has a angular version?

Best Regards, Sean.

94c43846-b3d4-4cd7-abe9-3e18d130ba54

I would like to run it in my windows offline, is it possible or i have to install on a server ? How can i open the html files and see the imagens and layout , not the data listed as a text plain file?

Hi,

You can just open the html files in the dist folder will do.

Best Regards, Sean.

Ok, and how can i change the color of the dashboard menu links, i want to invert from gray to white instead of white mouseouver , gray mouseover . Where i can find it in the css file ? which line, name ? Please send a printscreen showing to marciogandrabh@gmail.com thank you.

Hi,

If you are referring to the sidebar menu links, you can change the following SCSS variables:

FILE: /src/scss/_variables.scss

LINE: 505

and

FILE: /src/scss/_variables-dark.scss

LINE: 176

After making these changes, don’t forget to run the gulp command to compile the new app.min.css file.

Best regards, Sean

I’m very sorry that I found that I purchased the wrong template. I originally wanted to purchase the angular template product, but I purchased this product by mistake. How do I switch to the angular version of the product or get a refund and buy it again?

Hi,

No worries at all! Your refund request has been approved.

We’d really appreciate it if you could take a moment to give us a support rating. Thank you for your understanding, and we’re here to help if you need anything else!

Best Regards, Sean.

hello

yes i include the required css, js file and init function. when i put the date, time code to the html body section, it works. however when i move the date, time code to and i click the date, time, nothing apeared.

Hi,

Can you show us the code so that we can help you investigate the code. You can paste the code to pastebin and share the link here.

Best Regards, Sean.

i want to use form plugins(datepicker, timepicker) at modal but it’s not working. when i move the code to main page, it works is it impossible?

Hi,

Did you include the required css, js file and run the init function?

Best Regsrds, Sean.

Hi Friend, I made a mistake buying the incorrect template, I need the angular theme (I bougth the HTML template Q: ), it’s is possible to get a refund to buy it?, or maybe change the item?, or better send it directly to me?, thanks!

Hi,

You may submit a refund request after you purchase the Angular Theme and we will approve the refund request.

Best Regards, Sean.

I’ve converted this project over to a React project to make building upon it easier, but somehow in doing so the sidebar has lost its expandable/collapsible state. Any ideas on how to fix this/what might be causing it? Quite literally everything else has converted over properly

Hi,

You might need to have the JavaScript to expand / collapse the current clicked element and collapse other same level nav element. This javascript can be found via /src/app.js

Best Regards, Sean.

Hey there.

FYI.

The text color and the background color for the chart node hovers on this page are the same, making the text unreadable.

https://preview.themeforest.net/item/hud-bootstrap-5-admin-template/full_screen_preview/34000752

Hi,

Thank you for your comment and report. We have fixed the issue and released a new version for this issue. Kindly download the latest version from Themeforest user control panel will fix the issue.

Best Regards, Sean.

You are welcome! Tested and works great.

Thank you for the quick turnaround!

Here are a few more that I noticed. Confirmed in current versions of Chrome, Firefox, and Edge.

BTW, if there are only these minor issues remaining, that is actually REALLY good, in my experience. Wish I could say the same for my own projects…

  • jvectormap.com URL seems to no longer be viable. Resource references are returning errors. Looks like they may have been acquired by Vercel (https://jvm-docs.vercel.app/)
  • Dashboard cards “full-screen mode” toggle feature in upper right corners is really cool! But the strong convention and accessibility feature of the ESC key to dismiss “fullscreen mode” mode is not working or not implemented.
  • Dashboard TRAFFIC ANALYTICS card datatable in the bottom right corner seems to be missing in “fullscreen mode” and the map hover text in “fullscreen mode” appear behind the vector map.
https://seantheme.com/hud/index.html

Hi,

Thank you for your comment and feedback. We will put this into our todolist in next version release.

Best Regards, Sean.

Can’t I get a selected values from multiple selectpicker? <select class=”selectpicker form-control default” id=”select_team” multiple>

$(’#select_team’).picker(‘get’); this code is work only without “multiple” option

Hi,

No. This code is work with the multiple selectpicker as well. You will get the list of array for multiple picker.

Best Regards, Sean.

at table i want to get a list of checked column list from dropdown

Hi,

You may use jquery to get the checked column.

e.g

var selectedList = $(‘input[type=”checkbox”]:checked’);

$(selectedList).each(function() { console.log(this); });

p.s you may use vanilla js to get the selected elm value as well.

Best Regards, Sean.

I’m using selectpicker code : html : <select class=”selectpicker form-control default” id=”select_team” multiple> jquery : $(’#select_team’).picker();

in this case, i want to get a selected values from select_team.

i’m using this code to get selected values but nothing return var selectedTeams = $(’#select_team’).val();

please let me know, how to get selected values.

best regards

Hi,

For selectpicker, you might need to use their api to get the selected values.

e.g $(’#select_team’).picker(‘get’);

p.s you may refer to their official documentation as well. https://picker.uhlir.dev/#documentation

Best Regards, Sean.

Can you make this template RTL ?

Hi,

We have tested and the RTL version is definitely working fine on our side. https://ibb.co/4Y38yVQ

You can contact us via the support email in your downloaded documentation.

Best Regards, Sean.

can you send me app.min.css RTL download link i will replace it in my project

Hi,

We have send you the rtl version of app.min.css.

Best Regards, Sean.

Hi, I love this amazing theme you made!

I purchased the regular Bootstrap 5 version of HUD a while ago (there was no svelte version available at that time) and “made it work” with svelte by hacking around with it.

I was wondering if there are major differences to the Bootstrap only version and purchasing the svelte version might make my life easier and less hacky?

As an example: the Bootstrap only version includes javascript files for various libraries, is this handled natively in the svelte version or do I still need to include those javascript files in my html?

EDIT: I probably should have posted this on the svelte version instead of here, apologies.

Hi,

For your information, svelte version is different than HTML version as the plugins that we use is svelte based plugins and the file structure is different than HTML version as well.

You may refer to our documentation for the svelte version and decide whether it is suitable for your project before purchase.

https://seantheme.com/hud-svelte/documentation/#file-structure

Best Regards, Sean.

Perfect, thank you for the quick response!

Hello SeanTheme,

I have been working with your product for some time now and am still fascinated. I would like to see a landing page in the style of the admin panel.

Maybe it would be possible in the future, so that I can limit my clients to a wonderful design.

Kind regards MasonGIT

Hi,

Thank you for your comment and feedback. Yeah, we do have a plan to include a landing page in next version release. Please stay tuned.

Best Regards, Sean.

Wonderful. Is there an approximate release date?

Hi,

The release date will be within the month of july.

Best Regards, Sean.

Hello,

I would like it if you could create hover or other effects. That would make everything look more dynamic. For example, you could change the border theme with a hover.

Best regards

Hi,

Thank you for your comment and feedback. We will put it into our todolist for next version release.

Best Regards, Sean.

Thank you!

Hello SeanTheme

First of all, a very big compliment, the theme is very well made and I just love it. After setup my site and push content, I run into troubles with the selecpicker plugin. If you open the dropdown and you have another card below, the dropdown opens behind the second card. This also happens in the template file without modify anything, so it looks like there is something wrong in general with the selecpicker.

I uploaded a screenshot where you can see it: https://ibb.co/CKKy41F

Can you pls check this?

Hi,

Because of the selectpicker is using inline element for the dropdown list, you might need to set the card that contain the selectpicker having the high zindex than the card below it.

e.g

https://pastebin.com/WVUuRRpq

Best Regards, Sean.

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