Discussion on Limitless - Responsive Web Application Kit

Discussion on Limitless - Responsive Web Application Kit

By
Cart 13,880 sales
Well Documented

Kopyov supports this item

Supported

This author's response time can be up to 5 business days.

2227 comments found.

Great theme. Really useful and thank you for all details you’ve made.

One note: On Modals, in your documentation it says: “Warning modal. To use, add .modal-warning class to the .modal-header container” at “Optional modal colors section” but instead “bg-warning” should be used. It would be good if you can update documentation.

Cheers.

Hello there.

Ohh, thank you very much for reporting, seems like overlooked this text, will be fixed next week.

Thank you!

Hello,

I have been struggling through Limitless Primer for 2 days.

3 questions:

1. after I add widgets to my new page the “switch to page builder” options turns off and cannot be used any more I click on it and only the script is visible it is no longer possible to open the page in page builder?

2. When I modify a predifined page like “portfolio 3 column”. Where I can change the Revoluthion theme and the pictures which are encoded into this page-

3. Revolution builder is set to default and no other themes are possible thus I cannot change to my own revolution theme.

4. where can I get the 6 months Technical support which is in the license?

Hey.

I think you’ve left comment in a wrong template, this is admin template, not a WP theme :)

Thanks

I think you’ve left comment in a wrong template, this is admin template, not a WP theme :)

Thanks”

How can I get the support then- how can I contact the author to answer questions about the theme?.

with rgs,

Good night,

First I would like to leave my congratulations for the work, I’m working a few days with the template for a personal project and I have no complaints to make.

But has two things that I miss, a page kit for messages (email style) and some sort of panel or box to place text that comes from a form … let me try to explain, let’s say that I create a form to register user data – name, email, phone, etc. – It would be interesting some kind of widget to display this data in an orderly manner when picked up from the database.

If you have plans to do any of these two ideas, please I’d like to know, so focus my work in other areas and wait an update. If you do not have no problem, I use my creativity and resolve here.

And sorry for my english.

Hey hey.

Sorry for late reply.

1. Messages – yes, i already have some ideas about messages: reading, writing, composing. But haven’t integrated them yet, should be pretty simple though using components that are already integrated. Will be added in one of future updates.

2. For these features you can use static view of form elements or syntax highlighter along with <pre> element. I believe static form elements would be enough to display form results. Did i understand you correctly?

Thanks!

“form-control-static” – perfect, that’s what I was looking for. Friend, is so many options of things to use that has some passing blank. Thanks for the answer.

You are always welcome, more to come! :)

I purshed your “Limitless” theme. I don’t know themeforest rules. I tried download with Internet Download Manager (IDM) but my download didn’t completed. I don’t download again in 24 hours. Themeforest say’s:

“Whoops! Looks like you’ve already downloaded this item 20 times in the last 24 hours. That’s the daily limit! Come back in 24 hours to download it again.”

I need now your theme cause my project start developing tonight. Please can you send download link again for 1.1?

Hi.

That’s weird, did you try different browser?

Unfortunately all downloads are handled by Envato, as file is stored on their server, I don’t have direct access to the file that is available for buyers and all issues regarding Envato website can be solved by Envato support.

Please try to download again with different browser without any download tools after midnight and let me know if all good. If not, we’ll try to sort it out somehow.

Thanks!

ECharts – Columns & Waterfalls

I’m copy a “Basic column chart” code and merge it into my code. ( with Codeigniter )

But chart isn’t show. Please tell me how to edit it

Thanks.

Uncaught TypeError: Cannot read property ‘getAttribute’ of null

Assuming you took all code from columns_waterfalls.js file and try to initialize single chart.

This file contains all 7 charts used on echarts_columns_waterfalls.html page. Basically you just need to remove all extra code from columns_waterfalls.js and keep only configuration for 1 chart: open that file, locate “Initialize charts” and remove all except the ID of your chart. Then in “Charts setup” remove all options except your chart; do the same in “Apply options” and “Resize chart”. Or simply copy 1 chart configuration to separate .js file.

Let me know please if that worked out.

Thanks

Thanks you, That work. :)

Hello,

We have some issues with the charts.

1.When we are trying to add Echart in our application, it’s not displaying.We have added all of your files in assets to css/assets in our application.

2.In multi tabs the calendar and charts are not working.

I am not sure whether we missed something. Please help.

Hello.

1. If you’ve changed files location, you need to specify correct paths to echarts core. Open your configuration file and change paths in this piece of code:

    require.config({
        paths: {
            echarts: 'assets/js/plugins/visualization/echarts'
        }
    });

2. To render calendar in hidden components like tabs or modals, you need to re-render it when the tab is shown using events:

// Render in hidden elements
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
    $('.schedule').fullCalendar('render');
});

Same logic for the charts, but here you need to resize them using the same event:

// Resize in tabs
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
    sales.resize();
});

Thanks

Hello,

I would like to make a clickable world map vector.

How to do it?

Hello.

You can create a map with jVectorMap library (examples) and use onRegionClick event that fires on region click or use onMarkerClick that fires on marker click. So your code will look like this:

// World map
$('.map-world').vectorMap({
    map: 'world_mill_en',
    backgroundColor: 'transparent',
    regionStyle: {
        initial: {
            fill: '#93D389'
        }
    },
    onRegionClick: function() {
        alert('Region clicked');
    }
});

Thanks

Hi, Love the design . Are there any plans of making a Material Design version of this theme?
Additionally I have few more requirements, Could you lemme know if you plan to update the below in upcoming Updates..

  1. Can you provide steps to create a new Colour palette system ?
  2. Can you provide another skin that is similar to glass effect(Transparency Template)?
  3. Any more User Card designs?
  4. Search bar on navbar, click to have overlay on whole page ?
  5. Inclusion of Transparent Form elements ?
  6. Inclusion of File browser Template
  7. Fullscreen of whole App

I know, I m asking bit more but still keeping a positive hope. Also do you provide a custom work for a charge? I need few custom html pages for my education based project.
Thanks, Sam :)

Hey

Yes, material design theme will be added in the next update, hopefully in December.

1. That’s pretty easy. There are 2 main less files responsible for it: colors.less and palette.less. palette.less contains all color variables; colors.less contains bg, border and text classes. To change any color just edit palette.less file and re-compile CSS. Note: all colors are from material design palette.

2. Not at the moment, but i was thinking about adding fully transparent layout with white background. But i don’t really know when i’ll be able to release it.

3. Yes, in upcoming updates. I got some ideas about custom page kits, new cards will be added as well in one of updates.

4. There is a great tutorial for that, will consider adding it along with material design theme.

5. Will come up with material design theme

6. Something like Elfinder? Don’t really want to add it, because the last library update was more than 2 years ago.

7. Nice idea, need to think about possible implementation.

Custom work – unfortunately not in December, i have a big plans for the template and want to release a massive update with 2 new layouts next month.

Thanks!

Thanks a lot for the response. I would be waiting for the updates. Regarding Question 6, Not plugin like Elfinder. Well I mean display of multiple tiles that contains each file desc plus class filters based on file type.

Thanks, Sam :)

Nice idea, need to think about the layout and flexibility :)

Thanks!

Impressive job!

Thank you very much!

hi. i have a problem with datatables plugin. if datatable has two or less items in scrollable mode, bootstrap dropdown menu cropped by datatable.

screenshot: http://imgur.com/VqwafBn

Hi.

Yep, unfortunately this is a negative side of default responsive feature, where table has a horizontal scrollbar. For responsive functionality i suggest to use Responsive extension, which is added to Limitless as an option. To remove hidden overflow and a scrollbar, change this:

dom: '<"datatable-header"fl><"datatable-scroll-wrap"t><"datatable-footer"ip>'

to this:

dom: '<"datatable-header"fl><""t><"datatable-footer"ip>'

in your table configuration. Basically you need to remove .datatable-scroll-wrap (.datatable-scroll) classes that are responsible for horizontal scrollbar.

Let me know please if that works for you.

Thanks

Do you have photoshop or sketch files that we can purchase to help our UX designers create wireframes with all of the elements of this template? This would give our designers the ability to show the front end developers which elements to use and where?

Hey

Nope, unfortunately not at the moment. This template was designed in browser without any photoshop additions, except logo. As i’ve mentioned earlier, in the next updates i’ll add a full UI kit, but haven’t started working on it yet.

Thanks

Awesome, do you have any ideas on when this UI kit might be finished? Also, do you have any plans to translate the app into SASS http://sass-lang.com/

Next month i hope, planning to release 2 more layouts in December along with UI pack.

SASS – yes, as an option. Waiting for stable BS4 version to implement all layouts, SASS for BS3 template version will be added afterwards. Want to use same structure in both versions.

Thanks

Hello, I put on the dashboard html tag: <base href = ”/ public/” /> But does not the menu and error is: TypeError: $(...).dcDrilldown is not a function $(’.has-children’).dcDrilldown({ in app.js line 106

Where I can fix it? thank you!!

You are using CSS and JS files from 3rd or 4th layouts, they have different content structure and styling than layout #1 – please use correct CSS/JS files and all styling issues will be automatically fixed :)

Thanks

I’ve updated the layout again and probably copied another layout sorry,sorry,sorry,sorry. :)

No problem, let me know if you have any other issues :)

Hey!

Don’t know if already fixed

There is an error on the file assets/css/minified/core.min.css

src:url(’../css/icons/glyphicons/glyphicons-halflings-regular.eot’) to src:url(’../icons/glyphicons/glyphicons-halflings-regular.eot’)

Thanks!

Hey

Yeah it’s fixed, just move minified CSS files from assets/css/minified/ to assets/css/ or edit a path to font files in assets/less/bootstrap-limitless/glyphicons.less. In the latest update i placed both normal and minified CSS files in 1 folder.

Thanks!

Hello,

i have purchased the theme, its really great. But now we have a small issue.

In navigation panel, when we select a submenu, after reloading to the directed page, navigation panel displays the selected one as the first menu instead of recently selected submenu. Later we use jquery to do this.But when we used it with this theme, all accordian is open not collapsing. Instead of using “active class ” on every page, we are including it on every page, so we can’t achieve this through manually writing ””active” class to the selected list item in every page.

So we need to achieve the active class using the Jquery.

Please help.

Hello.

It is already done using jQuery, the code for accordion and collapsible navigations are in app.js file located in assets/js/core/.

Open this file and search for “Main navigation” and then 2 subsections: “Main navigation” and “Collapsible functionality”, all code pieces are commented accordingly.

By default, you just need to add class=”active” to the sub item, jQuery will automatically add necessary classes to its parents.

Let me know please if that doesn’t work for you, will keep investigating.

Thanks

We checked the app.js file. In your theme, you are adding the navigation panel to each and every page. But we write the navigation panel in another separate file and including it to all pages.

So we can’t add active class to the specific sub menu, for each and every file.

We want to remove the current active class when we click on a submenu and we wants to display the navigation panel with the recently clicked submenu as active.

Is there any way to do it via inclue function?

Understood, i think you can achieve the same functionality, but without adding active class to all parents. Instead, you can use the same logic for submenu link click, which will open sub menu if link, that has ”.has-ul” class was clicked.

Try to keep navigation code as is, because it’s directly connected with styles. Just play with navigation functionality without changing class names. For example – click on link with ”.has-ul” class will open children sub menu, click on simple link adds active class. Opened submenus you can try to control with cookies or again – with class name.

Unfortunately i can’t help you much here as i don’t know your code structure and use cases, but i can suggest some solutions.

Thanks

Me again… :)

Is it possible to add a dropdown menu to the sidebar? So you know how there is a user menu in the top right (when I click on “Victoria” I get a drop down).

What I want to do is also have a dropdown like that but in the sideabar. So where it says “Victoria Baker” I also want to make that a dropdown.

Is it possible?

Yes sure, you can use basic dropdown menu markup attached to the button or text and position it to the left/right. This is also an option for the upcoming releases to make it full width and add a collapsible feature, like slide up/down on click. For now you can use default menu options and add optional background color to it if needed.

Thanks

OK, will look into it, thanks

Hi, is it possible to create a flyout?

What I want is something similar to the sidebar on the right but I want it to float above the existing content, instead of moving the existing content to the side.

Also once the user clicks somewhere outside of the floating sidebar, it should automatically hide.

Yes sure, i’m planning to release updates once a month with new functionality and new layouts, so your suggestions are highly appreciated. And don’t forget to rate ;)

Thanks!

Rated it :)

Thank you so much!

Hi.

I’m working with the 3rd layout with Dual Sidebar. I insert an option to “toggle” the main sidebar inside the sidebar and a “hide” button on the secondary sidebar to hide that sidebar.

What I want is to re-open the second sidebar while people touch icons on the main sidebar. The idea is that the main sidebar contains a main menu button and if someone clicks on it opens a different second sidebar each time and hide the old one.

Hi

I see, i think i didn’t test such use case. But as far as i understand your idea, you want to use the same sidebar, but loading different content inside secondary sidebar depending on the main menu item.

All sidebars functionality uses simple classes added to the <body> tag. Secondary sidebar is hidden when “sidebar-secondary-hidden” is added, so basically you can toggle sidebar visibility on button click, if you use “sidebar-secondary-hide” class added to this button.

In the next update i’m planning to add a new sidebar type – floating secondary sidebar for mini sidebar, which will slide when you hover on main menu item. So i assume this is what you need.

Thanks

Thanks! Another idea I have. I want to make the fixed main and secondary sidebar 100% height, but that height must be to the bottom of the content and 100% visible on the screen size but considering the space that the header and footer have and reduce the sidebar size if it’s necessary when it’s on top or bottom. Then the overflow must scroll on a selected element/div if it’s necessary to see the hole sidebar.

Hi.

Yes this can be done, but needs some tweaks for scrolling to active menu. You can apply affix component to both sidebars and keep top/bottom spacing for navbar and footer, the logic is the same as on this page – when affixed, sidebar has 100% height until you scroll to the bottom where it adds space for footer.

Regarding scrolling to the active item – you can use Velocity animation engine or a simple jquery’s animate:

$('selector).animate({ scrollTop: $('item').offset().top }, 1000);

I am going to extend sidebar functionality in the next updates, i do have quite a lot of ideas for them – sizes, placements, styling, variations etc.

Thanks!

Hello, i’m unable to implement the charts you provided. I’m using python/django and your echarts.js is searching in a different directory, how can i fix that? cheers Daniel

thanks ;)

There are some Mobile Layout problems with your Echarts Combinations.

Unfortunately yes, mostly with long legend and outside labels in pie chart. Since this library generates charts in canvas element, it’s almost impossible to add any custom styles or control them via CSS. Simplest solution is to add minimum width to the chart and horizontal scrollbar – add ”.has-minimum-width” class to the chart container and ”.has-scroll” to its parent.

Devs already informed about this issue, let’s hope they will add a better solution soon.

Thanks

Do you do custom work? If so, please provide your email address. Thanks!

Unfortunately not at the moment, i’ll be available in 2 weeks, currently overloaded. You can contact me through my profile page, there is a contact form at the bottom.

Thanks!

Hi. How can I make a date picker use the Mysql date format – yyyy-mm-dd, e.g. 2015-05-25 ? Thanks!

Aha, you are using Pickadate plugin. You can easily change date format by changing “format” or “formatSubmit” options, here is an example.

Thanks

Thank you. Where would I put the JS function I create? Or would I be editing the existing one? Do I use the field’s class attribute for the selector? $(’.datepicker’). ? Thanks!

It depends on your app structure, because i don’t know where you store pickadate initialization :) By default, all picker plugins inits are in picker_date.js file located in assets/js/pages/.

Just edit the existing one – add that format option to your current init code, for example:

$('.datepicker').pickadate({
    format: ...,
    formatSubmit: ...
});

Thanks

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