2227 comments found.
Hello i use folder start kit to start my codeing, but some function not work in starter kit folder ? how to make work all function ?
Hey.
What exactly doesn’t work and what else you want to add?
about function panel reload, i try in demo is work but try in my codeing in folder starter not work .
data-action=reload << not work
in head panle, can read document pages ?
Ah yes, this was removed in starter kit, because it requires BlockUI plugin. The main point of starter kit is to keep only basic functionality without any extra plugins or code.
If you need it, you can always get it from main app.js file, located in assets/js/core/ folder. There are 3 main configurations – for panels, category title in dark and light sidebars. For quick find, use “Reload elements” search query.
Thanks!
you mean copy file Layout 4\LTR\assets\js\core\app.js to starter folder ?
no no. Main template’s app.js file and starter kit app.js file are a bit different. Starter kit’s one doesn;t include any extra and any optional JS code, only that is required for template to work.
Main template’s app.js file also includes tooltip, popover, reload functionalities etc. that are optional. You can of course copy app.js file to your development copy, but keep in mind in that case you need to include blockui library as well.
If you need that code separately, drop me an email, i’ll send that piece of code to you directly.
Thanks
// Panels
$('.panel [data-action=reload]').click(function (e) {
e.preventDefault();
var block = $(this).parent().parent().parent().parent().parent();
$(block).block({
message: '<i class="icon-spinner2 spinner" />',
overlayCSS: {
backgroundColor: '#fff',
opacity: 0.8,
cursor: 'wait',
'box-shadow': '0 0 0 1px #ddd'
},
css: {
border: 0,
padding: 0,
backgroundColor: 'none'
}
});
// For demo purposes
window.setTimeout(function () {
$(block).unblock();
}, 2000);
});
hello
i try add function but error
Uncaught TypeError: $(...).block is not a function
$(block).block({
in file have js file
<!- Global stylesheets ->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,300,100,500,700,900" rel="stylesheet" type="text/css">
<link href="templates/starters/assets/css/icons/icomoon/styles.css" rel="stylesheet" type="text/css">
<link href="templates/starters/assets/css/minified/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="templates/starters/assets/css/minified/core.min.css" rel="stylesheet" type="text/css">
<link href="templates/starters/assets/css/minified/components.min.css" rel="stylesheet" type="text/css">
<link href="templates/starters/assets/css/minified/colors.min.css" rel="stylesheet" type="text/css">
<!- /global stylesheets ->
<!- Core JS files ->
<script type="text/javascript" src="templates/starters/assets/js/core/libraries/jquery.min.js"></script>
<script type="text/javascript" src="templates/starters/assets/js/core/libraries/bootstrap.min.js"></script>
<script type="text/javascript" src="templates/starters/assets/js/plugins/ui/nicescroll.min.js"></script>
<script type="text/javascript" src="templates/starters/assets/js/plugins/ui/drilldown.js"></script>
<!- /core JS files ->
<!- Theme JS files ->
<script type="text/javascript" src="templates/starters/assets/js/core/app.js"></script>
<script type="text/javascript" src="templates/starters/assets/js/core/libraries/jquery_ui/full.min.js"></script>
<script type="text/javascript" src="templates/starters/assets/js/navbar_fixed_secondary.js"></script>
<!- /theme JS files ->
thankyou
<head> as well. Include this line to your head or before body closing tag:
<script type="text/javascript" src="assets/js/plugins/loaders/blockui.min.js"></script>
By now, you call the plugin which is not loaded, that’s why you get an error.
Thanks
Also, since JS files ordering matters, include ...../jquery_ui/full.min.js before app.js, other words – first load plugins and libraries, then load plugins configurations (app.js, navbar_fixed_secondary.js etc.)
thankyou
i recomment can add starter folder support all function js in next update
good job
you’re welcome 
Will consider your suggestion for further improvements. If you have any other questions – let me know.
Thanks!
Hi, your template is beautiful.
Is possible the selected menu option be shown (if it is submenu, parent menu be expanded) when a user visits a page?
Thank you
Can you provide us with the PSD for the logo? or for now can you tell me which font you used for the logo.
Very good job. Good luck!
Thank you very much!
Hi, I love your template ! It’s really great !
I would like to point a small problem : in the layout_4, and in the second nav bar, in PageKit, the second level menu opens with a hover but in mobile, there’s no hover, so when you click on it : nothing happens. Any solution ?
Thanks !
Hi,
Yeah i know about this issue, on iOS it works fine, on Android and Win phone doesn’t, as hover doesn’t really exist on touch screen devices.. In the upcoming update i’ll change mouseover to touchstart event on mobiles, so it will work as it supposed to.
Thanks!
Thanks mate !
compre este tema pensando que servia para wordpress, sirve para wordpress?
Hi.
Unfortunately this is not compatible with Wordpress, as description says this is an HTML template. You can make it compatible with any system, but it requires additional development.
If you have any questions regarding mistaken purchase, please contact Envato support.
Thanks
Very Good work. One small suggestion. Is it possible to add sample task file like gulp file in the starter pack? Makes compilation easy.
Never used gulp, but definitely will look at it on Monday and let you know.
Thanks!
Great job! I’m really in love with this template! Now you put me in a dilemma.. I was decided to get a materialized theme, and now I’ve found yours.. 
Haha, it’s up to you to decide 
Thanks!!
Awesome Work! Thanks. Any plan with sass support?
Hello.
Yes, in the second update. The first one will come up within next 2 weeks with RTL support and other improvements. After that I’ll add SASS 
Thanks!
Thanks! GLWS 
Great Design, any plans on releasing an AngularJS version ?
Yes sure, but unfortunately i can’t tell you exact dates at the moment. But definitely this version will be added along with BS4 version as soon as it will be stable.
Thanks!
First Londinium now Limitless! Kopyov your work is awesome!
Btw, how do I go about changing the color theme? Do I just use the color helper classes? Like bg-indigo, bg-orange…etc? Or do you have separate stylesheets for different color schemes?
Thank you 
It depends on what you want to change. If specific element on the page (single or multiple text/link color, button, navbar, tooltip/popover, panel etc.) than yes, you can use color helper classes. But if you need to change colors overall (sidebar and navbar defaults, all links etc), better change variable in LESS files – variables.less, core-variables.less files.
If you need any help with it, let me know please what exactly you want to change and i’ll do it for you.
Thanks
after going through demo, one word WOW, it’s Awesome work guys, keep it up and Good Luck
Thank you very much!
hi dude, awsome theme.. If i use the validation plugin on the login page, the validade is broken the input, the icons go to the bottom of the input. Can you try and see.
Hey hey.
This is all about error label placement. My bad, missed the case with icons, sorry. So, all you need to do is to use this markup for the input field with icon:
<div class="form-group">
<div class="has-feedback has-feedback-left">
<input type="text" class="form-control" required="required">
<div class="form-control-feedback">
<i class="icon-user text-muted" />
</div>
</div>
</div>
and add these lines to validation configuration:
// Different components require proper error label placement
errorPlacement: function(error, element) {
if () {...}
else if() {...}
// Input with icons
else if (element.parent('div').hasClass('has-feedback')) {
error.appendTo( element.parent().parent() );
}
else {...}
}
That’s it. Since icon elements use absolute positioning with % edges, error label needs to be placed outside the icon container.
Let me know please if you have any issues with these changes.
Thanks!
Thanks for the solution. A request for next updates, make a login page with forgout password on same page, like if im on login and click forgout password instead of go to a new page, just like fade out login form and fade in forgout password form.
Sure, will do! Both with tabs and modal.
Thanks for suggestion
Dear , how to make direction rtl ?
thank you
Hey.
RTL version will be added in the next update, it’s already in progress. Should be available shortly.
Thanks!
am waiting new update
thank you
Sorry for the stupid question. I’m a totally novice for this kind of things. It really looks great but what can I do and make with this item and how can I publish this on web? Is this like WP? If I purchase, what do I get?
Hey hey.
This is a static HTML template, which can be used as a base for web applications, control panels, billing panels, hosting panels, intranet portals, CMS admin panels etc etc. Sometimes can be used in data visualization and ecommerce. It includes all necessary components and layouts, but it requires additional development in order to make it compatible with Wordpress, joomla and other systems.
Thanks!