Discussion on Webarch - Responsive Admin Dashboard Template

Discussion on Webarch - Responsive Admin Dashboard Template

By
Cart 4,894 sales
Well Documented

ace supports this item

Supported

This author's response time can be up to 1 business day.

1192 comments found.

Hi Ace. Any news about pages?

Hi there Egent, thank you for checking back on us, as you know creating something from scratch takes time :) and finally we came down to last 5 task remaining to get it out :) please if you could be kind enough not to mention the marketing name and scratch it off ;) hope you got what I’m saying :)

Please join skype

Hey, really thinking of buying this template. The WYSIWYG seems to be broken on the demo… on blackberry 10+ devices. Maybe others? is this normal? there are no buttons just a textbox

Oh ok, so even in the summernote demo the blacker 10+ has issues, there are some markdown editor but I will look into it further more

Summer looks to be a good bet. Maybe just a little custom JS to get some of the buttons to do what they are told… anyways still great work you are doing here, will look forward to future releases for this template and other templates by you. If you ever need a beta tester, I do not mind.

Wonderful, I do like your suggestion about beta testing, is it possible for you to email to support@revox.io :)

Hey! loving the theme again so far, finally integrating the chat template into our current chat theme and will be adding the header as well. Question tho,

I’ve decided to add the header to the bottom, so I’ve been using the “bottom-header” in the body class. The only problem is the setting dropdown I can’t seem to get to show on top. Any workaround you can offer? Also I’m slowly integrating the template into the main site, so its just the chat and header parts. Anyway to have the sidebar collapsed and possibly even remove the gray area just temporarily?

Your help is very much appreciated.

When the sidebar is collapsed as well I can’t seem to reopen it?

Hi there Yea you will have to change the toggle class to . dropup

to do so the you will find a LI tag wrapping the Link add the class

“dropup” to it :)

Hi
Great framework , but there is a Bug when using the RTL layout specially on small screen sizes , the problem is in the right sidebar which doesn’t change its size and i have to scroll to access the elements or to see the content of the page … if you tested the RTL on small screen device ( like android or iphone ) and you tried to click on the navigation button at the top you will know what i am talking about .

anyway here are some screenshots :

i hope you fix the bug soon , beacause RTL support is one of the reasons why i bought this theme :’(

Thanks , it works great now :)

Wonderful! :)

Hi,

Can you add me on the private github repo please ? my username : tristanbes

Thanks.

Hi there Sure but we use our own private git repo, so if you can email to support@revox.io we can create you an account :)

Great theme!

Can I ask what font you use for the “WebArch” logo?

Hi there Thank you! Its Myriad Pro

Great! Thank you :)

I’m excited to have my final project finished and published.

Wonderful looking forward to see it! :)

Hi, any news about an update?

Hi there Sorry about keeping every one this long, Im happy to say we have a proper confirm date, that is Friday and Im sure themeforest would review it within the weekend and release it. We are not going to call it an update :)

Thanks for the reply, looking forward! ;)

I found a bug with 404 page. div.error-main has position: absolute; which is unnecessary and just introduces array of undesired effects. If you change col-md-4 col-md-offset-4 to col-md-6 col-md-offset-3 it won’t be centered. After removing position: absolute; everything works as expected.

p.s. any news on release date?

May I also suggest to deprecate your custom checkbox/radios and implement icheck’s instead, because it has better accessibility (you can use keyboard only, while with yours, unfortunately that is not possible).

Hi there The error-main has absolute to bring the entire div down from top to the middle :) and col-md-offset-4 helps it to align vertically middle, I will check with ichecks too

Sorry to ask this for the third time but do you guys have the exact date when this new update will be released and did you add summer note , really getting desperate ,here as it’s the end of the weekend (Sunday and I have to have this done buy Tuesday :S

Hi there Dropped you an email :)

hmmm I’ll see what I can do , thx for the update on things

Loving the updates <3

Is there a way to make the profile widget in the side-menu to be fixed so that the section with “Browse” and below will scroll? It would be nice to always have the profile widget visible/fixed.

Thats it! :)

Just what we needed! Works like a charm :) thank you for the quick support!

Great! :)

Hello, i want to purchase but i need some elements. 1. Chained Select 2. Multiselect preselect options

Hi there Sorry about the late reply, We do have selec2 plugin already installed in webarch but I guess its not sufficient for you ? :) Also we are planing to upgrade and add more form elements to it

Hi Ace,

Question about the session cookie. I am implementing jquery.cookie in the core.js as the first snippet loaded to check if the sidebar has been condensed or not when a user clicks to another page. The issue I am running into is it seems the sidebar wants to load in full length, catches the cookie’s value, and then will revert to condensed if cookie value matches.

This happens in a matter of half a second but results in the sidebar menu quickly flashing to full view and then condensing.

Do you why this may be happening?

Core js.

$(document).ready(function () {

    if($.cookie("isMenuCollasped") == '1'){
        $("body").condensMenu();
    }
.........

    $('#layout-condensed-toggle').click(function () {
        $.sidr('close', 'sidr');
        if ($('#main-menu').attr('data-inner-menu') == '1') {
            console.log("Menu is already condensed");
        } else {
            if (
                $('#main-menu').hasClass('mini')) 
                {
                  ....           
                    $.removeCookie("isMenuCollasped");
               ....
            } else {
                ...
                $.cookie("isMenuCollasped", '1');
               ....
            }
        }
    });

Hi there

Sorry about the delay on replies,You have implemented in JS correctly :) and this result is expected, every-time a new page loads you load the jquery lib and the time it takes to load and add the class “mini” to your sidebar is the reason why you see the flash.

The best implementation of this is to do it on Server side where you add the class mini before the page is delivered to the user that way you do not see that flash effect. You can do it in PHP,ASP, JSP or any server side language you used to implement your webapp

How to Open Condensed Menu on 1024 screen and tablets

Open up a common js file that is use in all pages, it can be core.js

Paste this code

    $('#layout-condensed-toggle').click(function () {
        if(window.innerWidth <= 1024){
            $('#main-menu').toggleClass('opened')
        }
    })

Open responsive.css and paste this code

@media (min-width: 768px) and (max-width: 1024px) {
    .page-sidebar.opened {
    height: 100%;
    }
}

Hi Ace,

Referencing the ‘tooltip’ feature….what is the process to invoke an active tooltip to the sidebar when in condensed mode by user initiation or breakpoint?

I want to add the tooltip hover over each icon when the menu is condensed.

Thanks!

Hi there Sorry about the late reply, Sounds like a cool idea but we need to make sure it works only on the condensed menu so I will try it my self and let you know :), what is the version you are using ? the latest ?

I was actually able to successfully implement it.

Here is what I did:

Core.js

$(’.page-sidebar i’).tooltip(‘disable’);

And then for the Layout condensed toggle section in the core.js if ( $(’#main-menu’).hasClass(‘mini’)) {

$(’.page-sidebar i’).removeClass(‘tip’); $(’.page-sidebar i’).tooltip(‘disable’); } else { $(’.page-sidebar i’).tooltip(‘enable’); $(’.page-sidebar i’).addClass(‘tip’); }

So it loads initially disabling the tooltip and if user clicks to condense, it enables tooltip and adds ‘tip’ class. If they click on it to expand, it will then remove the class and disable tooltip

Had to add almost same concept to breakpoint 768 as well for mobile browsers

Oh great! :) I shall also implement this for the rest of the users as an option, Thank you!

Fixed Column datatable Plugin clashing with template datatable

Hi there We didnot try include the fixed column extension but is there any way you could send me a screenshot ?:)

Soo, any ETA on the Angular release? :) Is there any chance to get my hands on it? I have to start working on a project tomorrow, can’t postpone it anymore. :S

Hi there I did not know that you were waiting upon this, My apologies :) as for more details about the deadline and updates I have dropped you an email via your account

Hi Ace,

I sent you an access request to your git through profile message. Can you review and let me know if its possible? Thank you in advance, Kostas

Hi there Just added you! :)

thank you! :)

today is the release of the new update right, can’t wait , as in need of that profile page to finish my site

Hi there I think there was a date, mix up, yes its coming, we are working on the doc and final touches, around late this week or weekend, I’ll keep you posted

Dear Support,

I have a problem with the mobile version of Webarch – it does display the dashboard! The desktop version is fine.

Can you please promptly suggest what I can do to fix it.

Thank you Zach

:) replied

Ace, I have just sent you a note on iframes that you asked. Can you pls help. Thanks

Just replied :)

What happened to the amazing surprise? Did you make that up aha?

Hi there We are still working on it, at the late part of it, Working on the Documentation :)

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