2227 comments found.
Hi i’m having issues with the pick a date picker and a launching a modal, if I include <script type=”text/javascript” src=”../assets/js/pages/picker_date.js”></script>
it kills the contents on my modal. Any ideas thanks ?
Hi,
Please don’t use picker_date.js file, it contains a lot of configuratoin examples for different pickers – if you check your console, you’ll see JS errors related to Anytime/Daterange pickers. All you need to do is to get a desired configuration of pick-a-date picker from picker_date.js file, let’s say:
// Basic options
$('.pickadate').pickadate();
and place it in a separate JS file, where you store all your custom JS code. That’s all, now it should work as expected.
Thanks
Ahh ok, I’ve been dropping in the include files from the example pages, do I need to create my own JS files using the functions I actually need ? <script type=”text/javascript” src=”../assets/js/plugins/pickers/pickadate/picker.js”></script> <script type=”text/javascript” src=”../assets/js/plugins/pickers/pickadate/picker.date.js”></script> <script type=”text/javascript” src=”../assets/js/plugins/pickers/pickadate/picker.time.js”></script> <script type=”text/javascript” src=”../assets/js/plugins/pickers/pickadate/legacy.js”></script>
These are plugins you are using in your project, all good here.
Files in /assets/js/pages/ are related to a page, not to a single component. Let’s say, picker_date.js file includes all configurations for all pickers on this page.
I’d suggest you to do the following: create 1 new JS file custom.js; include it after all js files on your page to avoid conflicts; place all your plugins init code into this file, including pick-a-date, because you actually need only 1 picker configuration. This method will help you to organize your custom code and store it in 1 file. Not mandatory though, but this is how i do that 
Thanks
Great thanks for advice 
Always welcome 
Still having issues getting the calendar to display in a modal, I’ve set the z-index as 1051. Modal pulls an ajax script where the calendar and other form elements are. Any thoughts ?
There could be 2 issues – calendar is initialized, but appears behind modal and calendar isn’t initialized at all.
First case – correct, you need to set z-index value bigger than 1050
Second case – i think you need to init plugin using modal “onShow” event (reference):
$('#myModal').on('show.bs.modal', function (e) {
// init plugins
})
or in ajax complete callback.
Thanks for reply, still having issues getting it to display in the modal i’m using following code, getting the alert when the Modal appears but no calendar. Any thoughts ?
<script type='text/javascript'>//<![CDATA[
$(document).ready(function(){
$('#createModal').on('show.bs.modal', function (e) {
// Change day names
alert("TEST");
$('.pickadate-strings').pickadate({
weekdaysShort: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
showMonthsShort: true
});
});
});
</script>
Hi,
Weird thing, this is what i get
Just want to make sure you are using same class names for plugin init and picker container – are they both “pickadate-strings”?
Anyway, here is my code for pickadate input field:
<div class="form-group">
<input type="text" class="form-control pickadate-strings" placeholder="Try me…">
</div>
this one is for JS part
$('#modal_default').on('show.bs.modal', function() {
$('.pickadate-strings').pickadate({
weekdaysShort: ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'],
showMonthsShort: true
});
});
Also please check your console – do you see any JS errors in there? Could be a conflict or wrong file order.
Thanks
Thanks for code, still no luck, calendar displays fine in main page, its the separate ajax script which runs in the modal thats not showing. Any chance I could send you the page, see if you can see where I’m going wrong ?
Thanks
Sure, send it to e.kopyov[at]gmail.com, but I’ll be able to test it tomorrow morning only if that’s fine.
Thanks
Thats great thanks for your help, really appreciate it!
Is there some news?
Not yet, still waiting for approval. I’m waiting as well, to update live preview. Sorry about that, but in this situation everything depends on Envato.
Thanks
Hopefully today is the day. Like others have said, I don’t think I have visited Themeforest so much. I keep hoping to see updated page, link, anything. I know you are trying. I just want to start my project and want to see all the new stuff that was added before I do.
Hi,
Yes, should be available very soon, depending on review queue. Not much of a new stuff, but a lot of improvements. I will post a changelog soon, uploading versions to the server. here you can check an incomplete preview.
Thanks
Oh I could have sworn that in the comments here you said there were going to be a bunch of new pages.
I mentioned next update, i meant after this one
Next update will be focused on custom page layouts only, around 24-25 new pages – ecommerce set, job search, documents base, file browser, mail interface, blogs, news, portfolio etc etc.
For this update i promised a new layout and material theme. Will start working on a new one next week.
Thanks
Any update?
Still queued for review, unfortunately i can’t speed up the process. Hopefully it’ll be available within a few hours. You should get an email once approved.
Yeah its available. Thank you for your hard work and dealing with all of us!!
Finally! You are always welcome. The package is quite heavy, will optimize file structure in the next update to use 2-3 folders with source files for all layouts, but didn’t bother until i saw its size 
Thanks for being patient
Hi! Found a mistake in different width buttons. I hope this will be fixed in the long-awaited release) http://g.recordit.co/NG8BuA0QIX.gif
Hi,
Your link is broken, please check.
Thanks
I corrected the link. Try now! http://g.recordit.co/NG8BuA0QIX.gif
Nope, still get 403 error
I am from Paris whenbis tonight for you thanks
We are on the same time zone 
Is the update validated by Envato?
Yes they always check all updates, but nobody knows how much time it can take – from 10 minutes to 2-3 days. Still waiting
Hi, any news about new release. Thanks
Yep, just wanted to make an announcement – i had to remove uploaded version twice, found a few bugs in layout markup. Fixed, repacked and going to upload again in 1 hour. And second day trying to upload new live preview to the server 
I believe tonight it’ll be available for download.
Thanks
Hi,
Sidemenu on mobile instead of opening top navbar is possible?
For example: http://getuikit.com/ (left navigation on mobile screen)
Thanks
Hi,
Unfortunately offcanvas menu isn’t supported at the moment, it is possible to implement, but requires quite a lot of work. I have some plans on mmenu plugin, but i don’t know when i’ll be able to add it.
Since Limitless is based on Bootstrap, it uses default collapsible navbar component for navigation on mobiles, but sidebar is a custom one. Anyway, will think over and consider for future updates.
Thanks
mmenu plugin looks great! I will waiting for
Thanks Kopyov!
Hi, firstly I would like to say that it is an awesome template and I am really happy with the purchase. We have couple of questions regarding forms.
1. For the form validation is there a setting that can change the border colour of the field to red to make the field with error stand out and then when the info is correct to make the border green? also if the entry is correct I don’t want a message or green tick appear on bottom of field. So only show message if something is wrong.
2. I have added a password strength meter to signup page password field but when there is an error it moves down slightly so not positioned correctly. I think this is a bug and needs a css fix?
Hi there,
1. Not sure about border/text color, didn’t test it. But i think it can be easily done using one of available methods.
To remove green mark, simply remove these line from your validation config:
success: function(label) {
label.addClass("validation-valid-label").text("Success.")
},
...
successClass: 'validation-valid-label',
...
validClass: "validation-valid-label",
2. Hmm that’s strange. Can i ask you to email me your code or a link to your page if it’s online, need to check your code. My email is e.kopyov[at]gmail.com
Thanks
awesome! thanks for your help!
always welcome 
How to move panel heading elements from right to left side of panel heading? Thanks!
Hi,
You need to edit heading-elements.less file, located in assets/less/components/ui/ folder. Basically you just need to change right edge to left, but keep in mind that page header and panel header use same class name, so identify which one you want to be on the right side, for example:
.panel-header .heading-elements {
left: 20px;
right: auto;
.......
}
This should work. However it will overlat your panel title, because heading elements have absolute positioning.
Thanks
Hi, is it possible to center something in the navbar ? We can pull left and right but not centering actually.
Thanks
Hi,
In theory yes, it is possible, but by default Bootstrap doesn’t provide this feature. I haven’t tested this use case yet, but definitely would be a very nice addition. Will consider for future updates.
Thanks
Do you have a preview link that you can post? Even if its not approved to download, do you have a link for us to preview the update?
Not yet, working on it – uploading to the server, since noon. Too many files
Will let you know when it’s online.
Thanks!
Same for me…
The “mob” is waiting for the update
Can’t remember when it was the last time reloading a page so often as this one and looking if “Version 1.2.1” is increased 
Soon, very soon, actually tonight or in the morning, a little more patience 
hey : nice preview for material design. thanks
is it all good for update submission to Envato ? Thanks
Hey,
Yes, it’s awaiting for approval, should be available tonight. I am working on live preview right now, also will be online tonight 
Thanks
Hi, This is pre-purchased question, Do I need to purchase the licence for handsontable separately? Or the licences for all plugins used in this theme is included with it.
Hi,
No, handsontable has 2 versions – basic and pro. Basic is free, pro includes a lot of additions and is paid. Limitless includes basic version.
All plugins included in this template don’t require any additional licenses.
Thanks!
Hi! Great theme!
Could you change or add another date/time pikers Current are almost not usable on mobile 
Hi,
That’s pretty tricky thing – all pickers use dynamic positioning, they can be forced to have full width via CSS !important, but need to test in different use cases.
I want to include one more premium date/time picker in the next update, it does look very nice, but haven’t tested it yet on mobile.
Thanks
Based on your comment above, material is just an option correct? It is not the new standard and your 1.2.1 input boxes still exist correct?
Of course, material theme is optional, default theme remains the same, but with a lot of improvements 
Thanks
Ok very good. I am not really on board with this material stuff either, not really sure what the advantages of it are or why I see so many people requesting it. Very excited for the update!
Are you still aiming to get the update out today?
Yes sure, waiting for review, should be available shortly.
Thanks
Hey : same question as JuloxRox. Thanks !
Hey,
Please check my reply to his comment 
Hi Eugene,
Regarding the upcoming update and material design theme ? Is it only visual appeareance of the components that change or have you been deeply inspired by this design philosophy and make some big changes to your layouts like switching for adaptive design rather than responsive with the grid system provided by Google or you stayed with boostrap ?
By the way, amazing work, I will definitely renew my support extension !
Question simplification : does your new work follow the spec provided by Google here : https://www.google.com/design/spec/ ?
Hi there,
Basically yes, in most cases you don’t even need to change markup. The reason why it took so long is that almost all components have been changed to match material theme – i manually edited all less files and tried to make switching between themes as simple as possible, you just need to replace CSS files and in some pages edit JS config. Here is a quick preview of the result.
Well, i did my best
I don’t really like Material design at all, but i tried to integrate it with default design in mind.
Tonight i will upload a new live preview and push it online once update is approved.
Thanks
Hi,
We bought this theme because we liked a lot. Great template!
Now we have a simple problem to implement a very simple thing.
We want to use layout_fixed.html as template for our page, and we want .content div be always 100% height and width of .content-wrapper’s div!
So far we have worked with jquery and very easily we resolved problem like this with simple html, but here we have a problem, because .content-wrapper div resize after $(document).ready or $(window).load events!
We assume that this is because the theme uses Bootstrap and we tried to find out when and how it happens but without success. We spent hours and hours on google unfortunately without success.
Please, can you help us with this?
Thanks in advance.
Maybe it would not be bad idea, that solution of this problem appears as a template page.
Cheers.
Kendzi
Hi there,
Unfortunately yes, it uses CSS table structure and this is the only once downside of this kind of layout – since all components are inside main container, you can’t set 100% height in CSS, because you’ll get a vertical scrollbar – it will count all components heights. That’s why i’ve added min-height calculation, attached to window resize – it automatically excludes those components and applies only to main content container.
In your case, there is a solution – you can try to add this CSS stuff:
body,
.page-container {
height: 100%;
}
This might do the trick, but i am not sure if that work out correctly since i don’t know what your page structure is.
Thanks
Thank you very much for your response.