2227 comments found.
hi, this is my account there is a problem, i used Switchery toggles and included its files and i used tags ‘Tokenfield for Bootstrap’ but But both are not working together Only one of them works
Thank you very much for understanding.
Ok, i think i know what’s the problem, but need to see your code first to confirm. Could you please send me the list of JS files you are loading on your page and a bit of JS code where you initialize switchery.
My email is e.kopyov[at]gmail.com
Thanks
hi; there is a problem, i used Switchery toggles and included its files and i used tags ‘Tokenfield for Bootstrap’ but But both are not working together Only one of them works
Hi,
Assuming you are using files from js/pages/ folder, that should not be in production.
Can i ask you to write under account from which you’ve purchased Limitless, so i can see you have a license before providing support?
Thanks
Hi;
Wonderfull template. Thanks for everything. I have a question about less minify. Minify later i get some errors.
/* Minification failed. Returning unminified contents. (23390,48): run-time error CSS1030: Expected identifier, found ’.’ (23390,79): run-time error CSS1031: Expected selector, found ‘)’ (23390,79): run-time error CSS1025: Expected comma or open brace, found ‘)’ (30356,102): run-time error CSS1030: Expected identifier, found ’>’ (30356,105): run-time error CSS1031: Expected selector, found ‘)’ (30356,105): run-time error CSS1025: Expected comma or open brace, found ‘)’ (32094,30): run-time error CSS1031: Expected selector, found ‘{‘
I think problem in component.css and core.css…. And I think about :not() using…. But i cant find any problem….
Do you have any idea for resolve?
Thanks for quick help.
Hi,
Hm, that’s very strange, checked both files and didn’t find any errors. Could you please tell me which method are you using for compressing?
:not() shouldn’t throw any errors, because it’s a standard CSS3 selector.
Thanks
Hi, i have a mvc Project and bundling less minify. (dotless) please could you give me your email for send project detalis to you. Thanks a lot
Hi,
Unfortunately i haven’t worked with MVC, so i’m afraid i can’t help you much in here. But i’ve found this solution that might help you. As far as i understood you need to configure it properly as it has some issues working with default Bootstrap less files.
Please let me know if that workaround helped.
Thanks
Do you have any Angular Version of this theme? Or are you planing to build that?
Hi,
Will be added this summer, currently working on a new update with lots of new page layouts.
Thanks
Do you think to add a price table?
Hi,
Yes, will be added in the next update.
Thanks
Hello, mr. Kopyov,
I would like to know if the assets folder is different in Layout 1 and Layout 2 ? I have seen there are some differences, but we need to know your opinion. Is it reliable for us to use the assets folder from Layout 1 for some pages that are Layout 2 ?
Thanks,
Hello,
Yes, all assets are the same, except LESS folder with bootstrap overrides and content related styles. I’d suggest not to touch less files, but do whatever you want with other assets – plugins, libraries, configurations, demo data etc etc.
I can’t tell you for sure which less files are different, but i can tell you for sure, that all files in /less/components/plugins/ are the same everywhere, except material version.
Thanks
Do you have any suggestions for front end templates that would match (even remotely) to layout #5? (http://demo.interface.club/limitless/layout_5/LTR/default/index.html) I’m looking for something that looks the same but more public facing
Hi,
Unfortunately i can’t suggest you anything at the moment, because i didn’t see any front end that has similar style. You can review this one, but i am not sure about the style.
All material design templates are mostly using material color palettes, typography, shadows and button styles. But i haven’t seen any template that completely follows material design principles. Honestly, it looks ok on mobile, but web apps look a bit inconsistent because of too much empty space in different elements. So everyone’s trying to re-invent own style based on material design, but not to completely replicate it 
Sorry about that.
Thanks
Just propose to add this plugin for datetime picker for next update. Good UI and still maintain by creator. https://github.com/xdan/datetimepicker or see this example here… http://xdsoft.net/jqplugins/datetimepicker/
Pickadate.js difficult to change the position so when the field in bottom, the pop up window for datepicker not auto positioning itself. It will beyond the screen.
Hi,
Yes, this one is planned for the next update instead of Anytime picker which isn’t popular 
Pickadate has another view mode, but as fas as i remember i didn’t include styles for this mode. Will be added in the next update as well.
Thanks!
Hi, I’ve recently purchased the Limitless template. I’m working my way through integration (very well documented and very professional).
I am however stuck with one issue; i would like to integrate a CKeditor (inline version) into a draggable panel, but it doesn’t work. Is there a specific .js file to use so that a draggable panel and the CKeditor work together.
Please advise. Your support is very much appreciated.
Please Cc your answer to the following email address: barry@cadmium.fr
Best regards
Email sent
Hi, I am having a lot of trouble with the D3 steamgraph chart on home page. I would like to feed the data using SQL query and ColdFusion output. But for now I am testing with a csv file of my data. The chart area loads and has numbers on the vertical axis. But no chart is drawn. Any ideas would be appreciated. Here is some of my data.
key,value,date AR,76681,2016-02-12 AR,80312,2016-02-19 AR,84642,2016-02-26 AR,88644,2016-03-04 AR,92852,2016-03-11 AR,96348,2016-03-18 AR,100106,2016-03-25 AR,104027,2016-04-01 AR,108298,2016-04-08 CD,289512,2016-02-12 CD,307505,2016-02-19 CD,328660,2016-02-26 CD,350203,2016-03-04 CD,372419,2016-03-11 CD,394315,2016-03-18 CD,415027,2016-03-25 CD,435980,2016-04-01 CD,459105,2016-04-08
Have also tried slashes instead of dashes on dates but no difference.
Hi,
Although D3.js is the most powerful visualization library ever built, all charts based on native D3.js code are not reusable. This means you need to build your own scales, selections, transitions, colors etc for all chart layouts. All charts from live preview are built for demo purposes, so please don’t consider them as a ready-to-use solutions as they require some adaptation for different data sets.
My example of a streamgraph is based on hours/minutes time scale for horizontal axis:
// Horizontal
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.ticks(d3.time.hours, 4) // show label after every 4 hours
.innerTickSize(4)
.tickPadding(
.tickFormat(d3.time.format("%H:%M")); // TIME format
As you can see, ticks are displayed every hour, but labels are shown every 4 hours and display hours and minutes in 00:00 format.
Your data set has different date format and doesn’t have time, so you’ll need to change:
1. Date format. Yours is different, current date format displays year without century as a decimal number. So you need to change it as well, change:
// Format date
var format = d3.time.format("%m/%d/%y %H:%M");
to
// Format date
var format = d3.time.format("%Y-%m-%d");
2. Remove time formats – tooltip and x-axis are using hours/minutes, you need to remove them as well:
// In Format date
var formatDate = d3.time.format("%H:%M"); // time format
...
// In xAxis
.ticks(d3.time.hours, 4) // change to days
.tickFormat(d3.time.format("%H:%M")); // change to days
and remove from tooltip markup.
By the way, D3.js has a very developer friendly documentation, and here is a direct link to available time formatting. It just looks very difficult, but i am sure you won’t have any problems if you are familiar with JS 
Let me know if you have any other issues with D3.js library.
Thanks
Hi there,
we have purchased your theme and it works great. we have one issue and maybe you can help as getting to a better solution or point me to the right direction:
The table plugin used “datatables” is not allowing to introduce sublevels and at the same time keep the rest of the functionality in place (column hide/show, fixed header, sorting, pagination, etc.)
We are trying to add child rows to a parent rows by clicking an icon on the leftmost column.
We know there is a row.child() method, but it does not work properly because it adds a row with no relation to the parent columns. We need the child row to match exactly the columns of the parent row, hiding or showing those columns that are hidden or shown on the parent.
We also know there is an option to add a new row dynamically (row.add()) but it does not allow to control the position of the new row successfully. All the new rows are added to the position where they should be according to the sorting behavior, instead of immediately after the parent row. There is a solution to that described here:
https://datatables.net/forums/discussion/29147/put-new-rows-at-the-specific-position-of-the-jquery-datatableBut the solution is unstable and resorting the table moves the rows from place. It also affects the pagination.
Thank you kindly in advance, Orly Shelef
Hey Orly,
As far as i know, there’s no a complete and working solution for child rows. The only working example i know – Child rows. In this example a new table is inserted into a new row, but you can control markup and add same amount of td’s and omit cellpadding.
So basically everything will have custom markup and JS code. I was also looking for a treeview solution a while ago, but on datatables forum users confirmed, that this kind of configuration isn’t supported at the moment.
Also found out, that in some cases row grouping is a perfect solution, where you can group multiple rows instead of hiding them – here is how i’ve implemented it.
I hope that helps.
Thanks
Hey ! I ma working with your last update … So Nice … Wanted to know. In the next april update you talked about elearning pages template. Actually your theme is a backend one so elearning template pages Will ne in this backend interface ? Thanks
Hi,
Yes, basically it’s going to be a control panel of elearning, not a full featured frontend – add/remove, manage entries, schedule etc.
Thanks
Hi and thanks one more time for your job !
Question : I would like to use the stepy wizard with Clickable title, and use the next button to send an ajax request (to submit the current step). How can I trigger the click event on this button ?
Thanks a lot if you can help me….
Hi,
You can use select callback, it fires when step is rendered. Example configuration would be:
// Stepy callbacks
$(".stepy-callbacks").stepy({
titleClick: true,
next: function(index) {
alert('Going to step: ' + index);
},
back: function(index) {
alert('Returning to step: ' + index);
},
select: function(index) {
alert('Rendered step: ' + index);
},
finish: function() {
alert('Submit canceled.');
return false;
}
});
Or if that doesn’t work for you, you can try to use basic jquery click event, something like
$('.stepy-header li div').on('click', function() {
// do stuff
});
Thanks
Yesss ! It works (with basic jquery). Thanks for your quick reply !!

Always welcome
Hey Kopyov, This is a really awesome admin page, the demos are just unreal. Just wondering is the PSD also included in the download file? thanks
Hey,
Nope, not yet. It was completely designed directly in browser, i didn’t use Photoshop at all, except logo
But i am going to add a complete UI set in one of upcoming updates.
Thanks!
perfect thats, great, just purchased it, can’t wait to use it. good job. thanks 
Thank you for purchase! Let me know if you have any questions 
Hi, we have purchased your template, and we are building our page based on it, we have a problem to do the following thing. We have fixed the navbar-top even in the “mobile” view, to have in every case the header fixed on top , but when we click on the right icon to expand the menù it doesn’t overflow the page content, simply push the content down. This is a problem because in a long page, we can’t see the menu expanded because is still on top of the content. How we mange this?
Hi,
This is the reason why fixed navbar on mobile has static position
In this case you also need to make sidebar fixed and add top spacing to it, but keep in mind that you’ll have double scrollbar – 1 in sidebar and 1 in page itself. I didn’t add this feature, because if you open navbar dropdowns, they will overlap sidebar.
Anyway, if you still want to use it, please email me your page with current CSS you are using (or link to your project if it’s online) to e.kopyov[at]gmail.com, i’ll check it out later today/tomorrow morning and provide a solution.
Thanks
Hello, I tried to use this layout http://demo.interface.club/limitless/layout_4/LTR/default/starters/layout_navbar_fixed_secondary.html but unfortunately there are some difficulties when access using mobile phone :
1. Megamenu scroll limited, so 3rd and 4th column inaccessible. 2. Dropdown menu also have difficult behaviour since the submenu is auto collapse when tapped. I have to hold but it is trigger the ther mobile OS hold event.
How to fix it, so megamenu can scroll all menus, and when tap dropdown submenu not autocollapse.
Thanks.
Hello,
Thanks for pointing out these issues!
1. Confirmed – a minor bug, overlooked it. There are 2 possible options – to disable sticky navbar on mobile or to add a scrollbar. I’d go for disabling it, because main top navbar is static on mobiles as well. Let me know please which option is better for you and i’ll send you a quick fix, later on will include it in the upcoming update.
2. Yep, i know about this issue – a fix is planned for the upcoming update. Since hover event doesn’t exist on mobile, this will be replaced with click or touch events. However hover solution works fine on iPhone. I haven’t tested on Android, that’s why i didn’t notice it. Unfortunately there’s no a workaround yet, but i’ll definitely find a solution asap.
Thanks!
Thanks for fast reply.
Currently point 1 is no problem. I use index.html template to fix my need.
But point no 2 is important and yes I tested it on Android using Chrome, but for now it is also not urgent for me. It should be good if it fixed on next update, so I will have the fix reference to modify my site.
Of course, i’ve got a bug report 2 months ago, but i simply forgot about it. So definitely both these issues will be fixed in upcoming update.
Thank you!
Hi Michael,
Can i ask you to check your console for JS errors?
Also a few things that might cause this issue – 1) if you are using starter kit, did you include less file with Plupload styles? 2) All other functionality on the page works fine?
Could you please send me a bit of your code to e.kopyov[at]gmail.com, i’ll take a quick look and find out what’s wrong in there?
Thanks
Thanks for your reply, i just send you the file
Just replied back
Could you fix whitespace bug? https://www.dropbox.com/s/5nxbjwdzoz1atog/Screenshot%202016-04-11%2014.01.49.png?dl=0
This is not a bug, you just need to manually set a height to each chart or top/bottom edges for legend. All charts require that height to be fixed, but width is always depends on window width.
Thanks
Do you have frontend theme?
Hi,
Nope, i didn’t create front end template because Envato doesn’t allow authors to include items from other categories within 1 template.
Thanks
Is it possible to make the whole row a link in a basic table? I am using the hover row but it would be great if the whole row was a link rather than just a bit of text or a button. thanks in advance!
Hi,
Yes, it is possible, but you can’t do that with HTML only, you can check this solution that requires a bit of JS code.
Thanks