398 comments found.
Do you have an ETA on the next update?
Hi, I have set release schedule for all the themes. For UBold, next release is due on 3rd week of this month. I’ll try to release before 20th this month. If you are waiting on specific page, do let me know, I may deliver it earlier.
I’m hoping for social widgets. I’ve been building my app but haven’t started implementing the design yet as I’ve been eagerly awaiting your next release and hoping it’ll include some. 
Ok I’ll try to add them. Can you please help me with some example of social widgets?
Remark calls them “blog widgets.” http://getbootstrapadmin.com/remark/topicon/widgets/blog.html, Also, this: http://getbootstrapadmin.com/remark/topicon/widgets/social.html
Basically, something for posts, videos, comments, liking, sharing, etc…
Thanks.
One other thing. Can you do a sidebar menu that disappears when closed? Instead of collapsing to icons, it just goes away. YouTube is a decent example of this; the sidebar is there, but when you click the hamburger icon it completely disappears, centering the page content.
Yes I can. I’ll make it configurable though. Thanks.
Trying to make a very simple menu for people who aren’t logged in. Unfortunately, the code below stacks Login and Register. How can I get them to be inline on mobile?
<header id="topnav">
<div class="topbar-main">
<div class="container">
<!-- Logo container-->
<div class="logo">
<a href="index.html" class="logo"><span>Ub<i class="md md-album" />ld</span></a>
</div>
<!-- End Logo container-->
<div class="menu-extras">
<ul class="nav navbar-nav navbar-right pull-right">
<li><a href="/login">Login</a></li>
<li><a href="/register">Register</a></li>
</ul>
</div>
</div>
</div>
<!-- End topbar -->
</header>
Please send me your email address as a private message here.
I have a question regarding the TableTools plugin you guys are using. I want to be able to remove the first column when exporting the datatable either to excel or csv, or copying or printing. I see that it’s very feasible by defining the which columns to be used as data source for the export: http://datatables.net/extensions/tabletools/button_options#mColumns
The only thing is, I can’t seem to find out where to do but arguments for the columns
$(document).ready( function () {
$('#example').dataTable( {
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [
{
"sExtends": "ajax",
"sButtonText": "Special columns",
"mColumns": [ 0, 1, 4 ]
},
{
"sExtends": "ajax",
"sButtonText": "Visible columns",
"mColumns": "visible"
}
]
}
} );
} );
Thanks
Hi,
Please check file datatables.init.js. You will need to specify the column that you would like to export in a csv file. Please find below code.
var handleDataTableButtons = function() {
"use strict";
0 !== $("#datatable-buttons").length && $("#datatable-buttons").DataTable({
dom: "Bfrtip",
buttons: [{
extend: "copy",
className: "btn-sm"
}, {
extend: "csv",
className: "btn-sm",
exportOptions: {
columns: [2,3]
}
}, {
extend: "excel",
className: "btn-sm"
}, {
extend: "pdf",
className: "btn-sm"
}, {
extend: "print",
className: "btn-sm"
}],
responsive: !0
})
},
TableManageButtons = function() {
"use strict";
return {
init: function() {
handleDataTableButtons()
}
}
}();
Works like a charm. Thanks for the great support.
Thanks for updates 
Hi, i’m testing the template on my site since 2 weeks but suddenly all the icons not working anymore even if I upload the entire archive as purchased without any modification. Could you help me to understand why?
Hi, Can I see your version somewhere online? If yes, please send me the details as a private message or support requests here. Thanks
I like your theme. Before I purchase I am wondering how actively you are working on it and do you have plans for any further extensions/improvements/fixes? Do you intend moving this to Bootstrap 4 etc?
Hi,
Thank you for appreciating it. I am working full time on ubold and other themes. There are lots of updates, enhancements in my todo list for ubold and I am releasing them one by one. Fixes are always on high priority though.So these updates will come, but sometime it may take some time. Hope I answered your question
Thanks.
That is the perfect answer – I am sure people appreciate your solidifying the existing system and not just adding more stuff.
Thanks. 
Can you make admin templates like this http://goo.gl/BhJ89O and this https://goo.gl/OfxaUC ? This is very userfrendly UI and most popular service in the worlds. I first which buy it.
Hi, Ubold is html template. The example you have given are project management and CRM. I am not sure what exactly you would like to have it with it. Thanks
However you may want to check http://coderthemes.com/ubold_1.4/light/crm-dashboard.html
Just want to confirm, is there no search results page in this template?
Hi, Search results page is already in ubold. Please check this http://coderthemes.com/ubold_1.4/light/extra-search-result.html
Thanks.
Thank you, missed it originally.
Cool! let me know if you have any suggestion around making it more better.
I love the design of this theme but find some things rather clunky on mobile, especially the mail app implementation; it’s barely usable. Do you have any plans on updating this? Do you also have any plans on adding more social features, such as posts with hearts/likes, comments, a better profile page, etc? I’m developing an app that needs to behave like an app on mobile. I’ve been designing with Remark, but keep coming back to look at UBold because of the gorgeous design: it’s exactly what I want! I just wish the implementation was a little more thought out and usable on mobile.
Thank you for detailed feedback. Definitely there is a plan to make ubold better. I have added everything in my todo list and will try to implement and include them in upcoming version.
OK, I purchased it. Definitely curious to see where this theme goes 
Thanks. 
Do you plan on creating any site pages?
There is a plan to include it, but it will take some time.
Hello there, Thanks for this wonderful template. The best I’ve seen so far.
I was wondering, is there any lightbox implementation in it? I check around and didn’t find any.
It’s not to hard to implement, I was just wondering if it there already. And if it’s not, maybe a good idea for next update, because I know lightbox is used a lot.
Thanks
Hi, Thank you for your suggestion. Ubold is having kind of it (magnific-popup), but I’ll add lightbox as a part of upcoming release. You might want to check http://coderthemes.com/ubold_1.4/light/extra-gallery.html
//CSS
/*Image modal*/
div.modalImg{
width: 100%;
height: 400px;
background-size: contain;
background-repeat: no-repeat;
background-position: center center;
}
div.modalImg span.close{
display: block;
position: absolute;
right: 10px;
font-size: 20px;
background-color: grey;
color: white;
border-radius: 50%;
}
img.imgMod{
cursor: pointer;
}
//HTML MODAL
<!-- Picture Modal -->
<div id="picture-modal" class="modal fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
<div class="modal-dialog">
<div class="modal-content p-0 b-0">
<div class="panel-body"><div class="modalImg"><span class="close"><i class="md md-close" /></span></div></div>
</div>
</div>
</div>
//JAVASCRIPT
//Image in Bootstrap modal
$('body').on('click', '.imgMod', function(e){
$('div.modalImg').attr("style", "background-image: url('"+$(this).attr('src')+"')")
$('#picture-modal').modal('show');
}).on('click', '.close', function(e){
$('#picture-modal').modal('hide');
});
And basically any image with the class ”.imgMod” will open in a Bootstrap Modal which is the exact same thing as lightbox.
Thanks
Nice and easy 
Ooooh, A decent horizontal menu bar, how I have been looking for one of these 
Thank you
Let me know if you have any suggestion to make ubold more better.
Hello, please in the next update, add the Tree System..
Thanks Daniel.
I have added this in todo list for upcoming version. 
hello, can you help me to find a easy way to install the tree system.. I’m really needing =(
It’s bootstrap based and so I think will easily fit with ubold. I’ll try to add a new page for it in day or two.
oh great! i’ll try.. thanks
Hello, what file i need update to fix the invoice pages?
I am sending you css fixes over email.
work! thanks
I have installed the theme yesterday and it due to the clear structure it was really easy to use! I would like to suggest a social activity feed page (like Facebook) to use in the theme. Thanks
Thank you for your appreciation and suggestion. I’ll try to design it and will include in coming version.
Great thanks!
Suggestion for next update, is put the arrows in menu that have a subcategories.
Thanks! added in list of todo now 
Hello, i’m changing the html theme to Angular.. But, for this, i need run all the scripts (js) in the same page, and have a lot of scripts, which causes conflicts.. You know any way to fix this?
Hi Daniel,
If you are using angular, I guess you will need to include angular related scripts for most of the plugins. Most of third party plugins are having angularjs version now a days. Most of the custom js code ?I have written is around using this plugin only, for the other js code, you’ll need to create a directive and use it inside it.
Let me know if I can clarify it more. Thanks.
hello, first of all, congratulations for the update.. i like it! i need one help.. i searching for a button to put on dashboard, in the charts panel, that i want to can filter the statistics in ’’today, last month, last year, and custom’’, and when choose custom, open a data picker to select a data.. You have this menu bar? Can you help me?
Thanks!
Thank you for support.. I receive in email, and work perfectly, you rock!
Cool! Let me know if you need any other help.
how can i change all primary colors at once time?
Please check variables.less, you can change color at line #12 and recompile it.
I have a suggestion.. Make the Menu on Mobile to be hide.. And put a button in header to click and show the menu… Actually, the left bar on mobile, take a lot of size.
Thank you very much for your suggestion. I’ll look into it and fix it.
It’s a nice template! What’s the current version and when do you have a new one ?
Hi,
Current version is 1.2. In next version, mostly 2 new layout (with horizontal navbar), some more enhancement, and some more bug fixes would come. I will release it soon (approx 2-3 days). Thanks.
Thank for your information.
You are welcome 
I don’t find a individual Filter for tables and i need it.. Its easy to make it?
Hi,
Can you please help me to understand it more? what exactly you required. Sorry I didn’t get you completely.
Thanks.
For example, i have a table, and in this table have 4 columns, i need one search for each column.. Understand? I found this in some themes, and its important to me..
Other question, only HTML5 or have an Angular version?
I’ll use this theme for offer a admin panel for my customers.. I can use Regular License right?
Hi,
Datatable is having a filter.In ubold currently, there is a one search box. Check here http://coderthemes.com/ubold_1.2/light/tables-datatable.html. But datatable is highly customizable and it supports column based search too. Demo is here: http://datatables.net/examples/api/multi_filter.html. Let me know if you are using datatable, I’ll send you updated script which includes column level search.
About license, please go through this page http://themeforest.net/licenses/standard. Also some FAQs here: http://themeforest.net/licenses/faq#faq-section-regular-and-extended-licenses
Thanks.
Wow, thanks, like your support.. Yes, i’m using Datatable.. So i’ll wait the update.. Thanks a lot =)
Please provide me your email address as a private message here.
Sended
Thanks. I sent you an email.
Works great! Great support!
Thank you very much 
I am very disappointed. The documentation does not exist, there is only a list of plugins. Unfortunately, if these plugins do not know, I do not know what I look for. The templates from other authors is much better.
For example form validation. Its Bootstrapvalidator? Or Form Validator? Or Bootstrap-validator? Or Parsley? Absolutely useless.
Hi,
I am sorry that you are getting issue and problem with documentation. I will add the detailed documentation in next release.
For form validation, please only go with Parsley. I’ll correct the form validation page. In the meanwhile, can you please send me your email as a private message here, I’ll send the some details around plugins. Also please feel free to get back to me with all your queries on anything in ubold, I will be happy to provide quick help.
Thanks.
Thx for answer. A lot of problem i solved.
Can you tell me, where is preloader setting? Or preloader .js file?
Please check the js/jquery.app.js, at bottom the js snippet is there. Also in core.css, search for “animationload”. If you would like to get rid of it, you’ll need to remove html and js.
Hello. First of all, what a beautiful theme. I’m considering buying this theme, but I need to make it funcional and I don’t really no a lot of backend. Is there any version that it is funcional?
Hi, this is just a frontend template and don’t have any backend integrated with it. Sorry, you’ll need to integrate it with backend of your choice.
I get it. It is possible to use with wordpress?
You’ll need to create theme for wordpress.