205 comments found.
i want to keep the (app) nav toggle at small screen size. i could not find how to prevent it from disappear
Add another app icon near the settings icon.
Do you plan to upgrade to latest bootstrap and jQuery versions?
It’s Bootstrap 3. but you can use the latest jQuery. We do not have this plan. Thanks
Hello,
is it possible to get a manual for the installation. I would like to integrate the package in an online platform.
This is a html template and without installation. you need integrate the css and html into your online platform.
Hello sir, in the menu layout option you have” color options.” When I click it shows a white nav menu. How do I do that for the site, si my nav can be white colored please?
I have various problems… Browser back button problem, Sometimes mouse scroll not work
Hi. I have purchased the Scale Template. I am using php platform. I’d like to re-use some parts of codes in each html (now php) using the #include_once() command.
I am putting the nav menus to another file and will be called by all codes. Which part of the code sets the color of selected menu item in the nav?
thanks!
Hi there,
I have downloaded the source, can you please direct me to how I can deploy the code?
I have been using other website builders, but would eventually like to use this one.
Regards,
This is a html template. actually you do not have to use any tool to deploy, just upload to your server.
Hi, is there any chance of getting the theme updated with the latest bootstrap and plugins? A lot of them are completely out of date and not working with the latest bootstrap.
Thanks!
You can update Bootstrap to 3.3.7 version in your project. Thanks
Hi, a lot of the plugins that depend on bootstrap do not work when upgrading jquery and bootstrap. Many of the plugins don’t seem to have links to the source repos to manually update them.
You can list the plugins, i will see if there is a replacement. Thanks
Hello, I made a mistake when buying this theme, my objective was to buy the theme “Angulr – Bootstrap Admin Web App with AngularJS”, after buying this theme I did not download it and bought the theme that I originally intended, it is possible to reverse this purchase? Thank you very much.
Refund, Thanks
Hello there,
I’m interested in buying your template but I would like to know if you offer a working chat functionality in front-end? Not internaly in admin area, but in the front-end.
Thanks in advance and I’m looking forward to hear from you.
Best, Themis
No working chat. but you can use https://www.tawk.to/
The animation does not affect google crawl your site. I think you need waiting google to index you page again.
Hello, I want to get show the data’s from another site with API methods.(samples: http://tweepsmap.com/ and http://sociograph.io/ and https://pro.iconosquare.com/) In this template(...) instead photo link and infographics can you put it? So I import data from other sites. Can we do this the data transfer? Or Is there your advice another a template to me? Regards.
Not this template. thanks
I have to use https://themeforest.net/item/scale-web-application-admin-template/7016215 theme in my CRM system. Can I resell my CRM if I use your theme if yes then what can be best price for your theme ?
You need buy the Extended License if you want to resell your CRM. Thanks
Hi Flatfull, from what I analyzed, I guess there is not styling for textareas, correct?
textareas style is same as input, use form-control class to style it.
$(function() {
var pgurl = window.location.href.substr(window.location.href.lastIndexOf("/")+1);
$("#menu li a").each(function(){
if($(this).attr("href") == pgurl || $(this).attr("href") == '' ){
$(this).parent('li').addClass("active");
$(this).parents('li').eq(1).addClass("active");
}
})
});
However, I would apprieciate if you could recommend a PHP script for active links on the server side.
Thanks!
Thanks! Before users log in, the app verifies if Javascript is enabled on the client side. I think it would be overkill if I also use a server side script, right? What do you think?
You can use the server code alone.
Got it, thanks!
Hi, First of all thank you for such a great Admin theme! Just a quick question, does the theme include a JS code that enables the CSS active of current page visited? If not, do you recommend if I add something like the following to the app.js file? [js] jQuery(function($) { //active links in menu $(function() { var pgurl = window.location.href.substr(window.location.href .lastIndexOf(”/”)+1); $(“ul.nav nav-main li”).each(function(){ if($(this).attr(“href”) pgurl || $(this).attr("href") ’’ ) $(this).addClass(“active”); }) }); }); [/js]
$('ul.nav a').filter( function() {
return location.href.indexOf( $(this).attr('href') ) != -1;
}).parent().addClass( 'active' );
Hi, I am interesting to buy this. Checked on ie8 but is completely messy. Can you please help me understand whether this support on IE8
Do not use the compatible mode. it works on ie8
Have tried that too, but not working. can you please help
Maybe it’s the css rules limits, http://stackoverflow.com/questions/9906794/internet-explorers-css-rules-limits
The live demo css files are combined in one file, so it’s out of the ie css rules limit.
You can get the source files(the uncombined css files) when you purchased. then no ie css rule limit issue.
Thanks
Hello I have not been getting replies to my question due to an email error. My question is the navigation alqays triggers a white screen and sort of hangs when any menu is clicked, how do I resolve this?
Remove the bjax on the .nav-primary a in app.js.
The navigation hangs and shows a white screen please how can I resolve that
$(document).on('click.app.bjax.data-api', '[data-bjax]', function (e) {
Hello, I am trying to add an update event handle for a sortable items list, to calculate things as they change. This code works fine with a regular jquery-ui class, but I cant make it work in here, what is the best way to do this under Scale?
$(function() { $( ”#sortable-5, #sortable-6, #sortable-7, #sortable-8, #sortable-9, #sortable-10” ).sortable({ connectWith: ”.itemsList”, update: function(e,ui) { console.log(“Something!”); } }); });
I think it’s the ajax loading page content affect this. try remove the ”.nav-primary a” in “js/app.js” line 182. $(document).on(‘click.app.bjax.data-api’, ‘[data-bjax], .nav-primary a’, function (e) {});