100 comments found.
Could you add the “open” style for the frontend navigation (now is using the “active” class)? If the the class is the same for both, backend and frontend navigation, then you can use the frame interchangeably for logged and anonymous users while the content remain the same.
Hi! Main navigation work differently in backend and frontend but if you need to change the class being used from ‘active’ to ‘open’, please send me an email and I will get back to you as soon as possible with the CSS and JS changes you will have to make! 
Hi! Thanks a lot for letting me know about it, I will update it accordingly! 
Happy coding! 
Hey Guys.. nice tempalte
btw onw question..
Wanted to know which plugins are used for On/Off switch in since i wanted to use it instead of radio buttons and fire through jQuery javascript if i can get any documentation regarding on/off switch it will be great..
Hi, thank you very much for your purchase, I’m really glad you like AppUI 
The switches are native CSS themed checkboxes, no JavaScript plugins are used! You can directly alter their state as usual. For example, to set a switch to on (with a checkbox input with id #mycheckbox):
$('#mycheckbox').prop('checked', true);
Hope that helps, happy coding 
thanks for response.. one more please 
I wanted to hide year while selecting date in datepicker .. while selecting date via datepicker i wanted to show only date and month not the year.. is it possible?
Regards
No problem, I’m glad it helped! Unfortunately, there doesn’t seem to be a way to disable years in the datepicker plugin, I hope they implemented such feature in a future version. For more info regarding the plugin, you can have a look at the official docs: http://bootstrap-datepicker.readthedocs.org/en/latest/ 
Hi, do you plan to add a forum template? I think it would be nice to have a simple forum template using the current AppUI style
Hi, thank you very much for your purchase and your suggestion! 
I will add forum pages in the next update, so stay tuned! Happy coding 
Hi pixelcave, your template is great. I like it very much. But I have one question. Can I block the mobile view?
Thank you in advance.
Hi, thank you very much for your purchase, I’m really happy you like AppUI! 
Unfortunately, there isn’t an easy way to disable the mobile view and further changes to the code and the markup of each page are needed. A good starting point would be the official Bootstrap page at http://getbootstrap.com/getting-started/#disable-responsive
Hope that helps! 
Hi Pixelcave! Great job on the template, customizing is a blast! Well done!
Any plans for another updates? Can you share some date maybe
?
Hi sivus! Thank you very much for your purchase and your kind comments, I’m really glad you like AppUI 
I’m currently working on a new project and as soon as I release it, I will provide new updates for both AppUI and ProUI! Unfortunately, I don’t have a specific timeline yet but I’m doing my best to bring them asap! Stay tuned and happy coding! 
One of the best templates I was working with so far. Your frequent updates show you care about your customers. All in all I had really good feeling all the time from finding your template through trying it and now working with it. Looks like a work of perfectionist, which is nice. Please, please keep it up 
Btw. I got there via https://datatables.net/manual/styling/themeforest.
Thank you so much for your inspiring and motivating comments! I really appreciate it and I’m very glad you like AppUI! Thanks a lot for getting back and letting me know, comments like yours makes me work harder and keep pushing forward! Wish you all the best with your project and happy coding! Stay tuned for more updates in the future 
hi it’s a nice theme plz add 404 error page tnx
Hi, thank you very much for your purchase, I’m very happy you like AppUI 
I have already included an error page which you can use as 404 page, you can find it under extra pages – http://pixelcave.com/demo/appui/page_ready_error.php – Hope that helps 
Hello, foremost, I have to congratulate you for your really good job ! 
- Did you have planned to do an AngularJS version ?
- Do you have internationalization utils ?
- Are you using RequireJS ? Bower ?
Thank you !
Hi, thank you for your interest in AppUI and for your kind comments, I’m very glad you like it! 
Unfortunately, AppUI does not have any internationalization utils or use RequireJS/Bower at the moment. Regarding the AngularJS version, I may add one in the future but there aren’t any immediate plans. If you need any further info, let me know! 
i mean i want to use it to read and send emails from my personal domain
is it posible how it can be done?
Hi, thank you for your interest in AppUI 
Unfortunately, it can’t be used out of the box to manage your emails since AppUI is an abstract template. Extra functionality should be coded by a web developer to make it functional! Hope that helps 
if i buy it how can link it to me email in my server, domain so i can use this template to read and send emails?
Hi dude, if possible next update make a price table like this http://pelfusion.com/media/wp-content/uploads/2013/04/css3-vertical-pricing-table.jpg , add a facebook and twitter on login page or make another login page with social buttons. http://tattek.sk/minovate/#/core/login, something like this is really nice http://tattek.sk/minovate/#/app/forms/upload
Like i said before, best theme so far.
Hi, thanks again for your kind comments! I’m very glad you like AppUI! 
Thanks a lot for your suggestions, too! I will do my best to add such features in future AppUI updates 
Hello,
I have submited a support request.
Hi, thank you very much for your purchase 
Please have a look at your inbox, I just replied to your message 
Very nice template. I have a few questions/suggestions before purchasing.
Does it support a boxed layout with a fixed header? Do you have or can you add a 5-day weather widget? Can you make the task list drag-n-drop so they can be reordered? How difficult is it to add another theme color scheme?
Hi, thank you for your interest in AppUI, I’m very glad you like it! 
AppUI currently supports boxed layout with static header but with a small customization it can also support a fixed header (I can help you with that). There isn’t a weather widget and the task list can’t be reordered at the moment but they are nice features/suggestions which I hope to add in the future, thanks! Regarding the color theme, you can easily duplicate a theme file and add your preferred colors really quick.
Hope that helps but if you need any further info, please let me know! 
Dear creators of pixelcave, Thank you for the great theme.
I have a question.. When I try to load for example nav bars (or anything else from bootsrap apps using jquery .load function, than all functionality of jquery and butstrap stops inside of where I loaded this content. I was trying to load this scripts:
http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js, themes/appui/js/bootstrap.min.js, themes/appui/js/plugins.js, themes/appui/js/app.jsby $.getScript inside the .load function it does not help.
Can you advice me how to load html content inside ’s correctly? When I was using previous theme – everything was working.
Hi syroeshka, thank you very much for your purchase, I’m very glad you like AppUI! 
When the page loads, all jQuery plugins are initialized on the existing HTML elements. If you load new HTML code with AJAX, then new elements are injected into the DOM. Any plugin should be re-initialized to work with them.
For example, if you load the navbar with AJAX which uses dropdown menus, you should run the init code for the Bootstrap dropdowns as follows:
$( "header" ).load( "inc/header.html", function() {
// Initialize Dropdowns
$('header .dropdown-toggle').dropdown();
// ..or if you also have tooltips
// Initialize Tooltips
$('header [data-toggle="tooltip"], header .enable-tooltip').tooltip({container: 'body', animation: false});
});
For your reference, in js/app.js – uiInit() (or in the Docs) you will find commented init code for many plugins that you might need, depending on what content you will load with AJAX. Hope that helps but if you need any further info, please let me know 
thank you for your soon answer. Actually I do not understand where to get “inc/header.html”, there is no such dir and file in source download. 
This is just an example url, I wanted to showcase where you should add the init plugins code, when you use jQuery’s .load() function. You will have to re-initialize the plugins you would like to use in content that is loaded with AJAX 
It’s sound a little bit complex for me… If my question is not too general, and if it is not too difficult to answer for you, can you explain me as an example loading a page page_ready_profile.html if I would .load the content starting from <!- User Profile Row -> .. For me there are too many HTML’s which I would have to initialize, isn’t it?
pardon: For me there are too many HTML elements which I would have to initialize.
Yes, of course, please send me a message through my profile’s contact form and I will get back to you with an example page (loading the User Profile content with AJAX) as soon as possible! It should be easier to take it from there and apply it in your code 
Hi dude, really like your theme. Is there anything you can do to stop frozen dreamweaver when are editing the theme? i have a really fast computer but just with your theme to open the files, save or change windows take time and most of the time its frozen. Its probably something related with css files. On the next update if possible add a calendar 2 – with open a modal window to add event on day click. Thanks
Hi and thank you very much for your purchase, I’m very glad you like AppUI 
Unfortunately, Dreamweaver can be really buggy and slow at times but testing on the latest CC version, everything seems to work fluidly (as it should, since AppUI’s code is W3C valid).
Please send me a message through my profile’s contact form with more info about the DW and OS version you are using. I will also get back to you with an example calendar page (with a modal to add events) as soon as possible 
Hi,
I bought this Layout just a couple of days ago and I really enjoy working with it. Thank you.
I have just a few suggestions for further versions of AppUI.- Support and examples for form components in frontend. My example I need to have an additional css checkbox below newsletter signup.
- The order of menu list in backend is not optimal. Sometimes it takes me a bit to find modals notifications or labels.
- For my project it would be amazing to get more and different charts / graphs in frontend and backend.
Thank you very much for your work. Greetings currently from Hamburg Germany
Hi and thank you very much for your purchase, kind comments and suggestions! I’m very glad you like AppUI! 
I will do my best to include your suggested features in the upcoming updates, so stay tuned and happy coding! 
Hi, nice template. One question. It can remove event in Calendar ?
Hi and thank you for your interest in AppUI, I’m glad you like it 
FullCalendar, the plugin that is used for calendar functionality, includes many functions for editing events, including a remove function: http://fullcalendar.io/docs1/event_data/removeEvents
Have in mind, though, that adding, removing or saving the events in a database (for example) requires some custom code 
If I buy this theme, I need someone to install for me (Assemble the database of all pages (paid well for it)) is possible?
Hi and thank you for your interest in AppUI! Unfortunately, I’m not available for freelance work but you might find someone at Envato Studio – http://studio.envato.com/ – who will be able to help you with your project 
Hi,
Very nice template! Not yet bought because i have a question.
In the frontend, can you use the same stuff as in the backend? Like: • CSS classes • Popovers, Tooltips & Modals
Or is it limited?
Because i like some styles and actions in the backend i also would like to use in the frontend.
Hi and thank you for your interest in AppUI, I’m very glad you like it! 
The backend and the frontend is separated in the package but they share many common features and CSS classes! Popovers, tooltips and modals can be used in the frontend without any additions but if you would like to use something that it is not included, you can easily copy-paste it from the backend (they have the same file structure, so it’s easy to find what you need).
In any case, I will be able to assist if you need any specific info on a feature 
Thanks for the reply, helped good. Think i will buy the theme!
Thanks a lot! Let me know if you need any further info 