ThemeForest

White Label - a full featured Admin Skin

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

Hi,

Awesome work on this site man! This may be a very noob question but how do you change which calender feeds to the calender widget?

revaxarts

The calendar is based on the fullcalendar plugin. Please check out it’s documentation for further info

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
Fabi1986 Purchased

hi,

I get an error when i send a wl_Form repeatedly

$.confirm is not a function

I hope you can help me

thx

revaxarts

Make sure you have included the wl_Dialog.js file!

Default-user
Fabi1986 Purchased

thank you, this was the problem

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years

can i buy this template to ask my programmer to build a custom cms for my company based on this skin?

revaxarts

For sure!

Keep in mind that you allowed to use it one time with the regular license!

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

Hello :) Very good template. Im not a pro with Jquery.

I managed to send the form and handle it with my php scripts, so far so good.

But I would like this : - I got a form on each row of my table - When i sumbit one of the form, i would like the row to collapse

Could you tell me how to do this please ? (I guess I got to give an ID to each row, and call some JS function ?) Thank you :)

revaxarts

Make a form for each entry. Use the name attribute instead of ID.

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

And then ? What/where should I write to make the form disappear ?

revaxarts
You can use the onSuccess callback for instance:
$([selector]).wl_Form({
   onSuccess: function(data,status){
      $(this).hide();
   }
});
  • Bought between 10 and 49 items
  • Has been a member for 2-3 years

please help? refresh function does not work on Internet Explorer 9. If I change the files in the explorer where to send down ‘makes the refresh? example: div class=”widget” id=”ajax_widget_reload” data-load=”page.html” data-reload=”4” data-remove-content=”true”

Waiting for your reply?
revaxarts

Maybe the page.html get cached by your server. Check this page on IE9 to see it’s working.

double check the markup:

<div data-load="page.html" class="widget" id="ajax_widget_reload" data-remove-content="true" data-reload="4">
    <h3 class="handle">AJAX Widget with autoreload</h3>
    <div>
        This content get replaced
    </div>
</div>
  • Bought between 10 and 49 items
  • Exclusive Author
  • Has been a member for 3-4 years
Synn Purchased

First of all, splendid work on this theme, I’ve been taking it appart and I’m learning a lot, going to be using techniques in future projects. I have one issue I can’t seem to locate though, in IE7 the password field refuses to show its content. I’ve fixed the fadein issue by removing the fadein effect from the form.

Any ideas on this?

revaxarts

Which password field you are talking about? From the login or within the form?

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Are we sure this works on IE8 ? I’ve tried clearing the cache as suggested but nothing seems to work. I don’t get any of the nice gradients etc. – the site just looks like a bunch of white boxes with black borders.

revaxarts

I’m sorry but the styleswitcher doesn’t work well on IE8 . Check out the screenshot I posted a few comments above. I’m going to solve this

Default-user

Thanks for the prompt reply. So it just don’t work in the preview? Is there any way to see a version that works in IE8 before I buy?

revaxarts

Ok I changed the styleswitcher code. Please try again with an empty cache. thx

Default-user

Perfect. thanks!

  • Bought between 1 and 9 items
  • Exclusive Author
  • Has been a member for 1-2 years

Wow, this is awesome! We’ve been searching for a template for our new App and what I can say – we found it! Great work! Hope to see more templates like this!

revaxarts

Thanks! Would love to see the final product :)

  • Turkey
  • Exclusive Author
  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
yvolkan Purchased

Hello,

what are you suggest for file upload ?

revaxarts

I’m searching for a good solution so I can implement it in the next update. Please stay tuned!

  • Bought between 50 and 99 items
  • Exclusive Author
  • Has been a member for 2-3 years
  • United Kingdom

Hi there,

Not sure if this is an issue that may have been solved or just not found yet,

I’m working with the connect to input slider and I need the value to go to -100 through to 100, (currently it is 0-100).

The code in your slider file ‘wl_Slider.js’, shows these values however changing them has no effect.

$.fn.wl_Slider.defaults = { min: 0, max: 100, step: 1, animate: false, disabled: false, orientation: 'horizontal', range: false, mousewheel: true, connect: null, onSlide: function (value) {}, onChange: function (value) {} };

Hope you are able to shed some light on this.

Regards Neil

revaxarts

Hi njmarkham!

Thanks for purchasing my item!

There is a config.js in the js folder. It contains all configuration for all plugins in one place. These settings overwrite the ones which are within the plugin file.

Goto line 190 in the config.js and change global settings here.

Hope I could help you

  • Bought between 1 and 9 items
  • Has been a member for 1-2 years
Fabi1986 Purchased

Hi,

How can i disable the password form field?

thx for help

revaxarts

Can you explain that further? Do you mean the confirmation field?

You can always use the “disabled” attribute on the input element

You can disable the confirmation field with:
$([selector]).wl_Password({
   confirm: false
})
or within the input field:
<input type="password" data-confirm="false" />

Hope I could help you

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years
joonpa Purchased
<form method="post" action="URL" id="form" autocomplete="off">

<button class="red">Submit</button>
</form>
--------------

form by changing the value I want to update to the database. but do not go to the specified URL .

Hope I could help you.

revaxarts

Hi!

The form is sent via ajax so there is no page refresh. The data is sent do the URL from the action attribute.

I’m working on an update which allow native form submit (with page refresh)

  • Bought between 1 and 9 items
  • Exclusive Author
  • France
  • Has been a member for 2-3 years
Etanne Purchased

Hi,

I bought this theme : it’s a great theme !.

But I would like to use form without AJAX callback. How can I do that ?

Thanks, Florian

revaxarts

Hi Etanne!

I’m currently working on an option to submit the form without ajax.

Meanwhile you can use the onBeforeSubmit callback to prevent submiting the form via ajax:

$([selector]).wl_Form({
   beforeSubmit: function(){
    $this.unbind('submit.wl_Form');
    $this.submit();
    return false;

   }
})
Etanne
Etanne Purchased

Perfect :)

Thanks !

  • Bosnia and Herzegovina
  • Bought between 1 and 9 items
  • Has been a member for 2-3 years

Hi,

I’ve just purchased a template and I like it.

I need file upload field in my app many times. When will you make an update ?

Regards, Dino

revaxarts

I’m working on it!

Have to fix a couple of bugs, but should be finished this week

  • Has been a member for 2-3 years

Hi, I’m new to admins. Can I have a bunch of users under their own folder, domain, subdomain, and each would use this admin, logged in with user/password to make changes to their web pages? Cheers, S

revaxarts

Is this a license question or a technical one?

  • Elite Author
  • Sold between 100 000 and 250 000 dollars
  • Has been a member for 2-3 years
  • Exclusive Author
  • Europe
  • Referred between 10 and 49 users
  • Bought between 10 and 49 items

wooo! awesome work!

  • Bought between 10 and 49 items
  • Has been a member for 2-3 years
joonpa Purchased
$([selector]).wl_Form({
   beforeSubmit: function(){
    $this.unbind('submit.wl_Form');
    $this.submit();
    return false;

   }
})

This section needs to be set in any position to which files do?

Hope I could help you.

revaxarts
replace the
$content.find('form').wl_Form();
in the script.js file with this
  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
rezareza Purchased

great theme to be honest … Thanks to simonthetwit for quick work around ;)

revaxarts

Thank you rezareza! Update is on the way. I implemented the possibility to send form native

ps don’t forget to vote!

  • Bought between 1 and 9 items
  • Has been a member for 2-3 years
  • Romania

Hi revaxarts, great template, I like it very much and I’d like to purchase it for my project but I need to ask you something: may I use this to control the users to access (from outside) some of my equipments which can be seen only from local network area (with private IP)? My question is a technical one and if this is true, do I need to pay extra or a regular license is adequate? Thx.

revaxarts

Hi sebybastian!

please check out this article about license. I think it’s ok but please contact support to play it safe

Thanks

by
by
by
by
by