MillaN

MillaN

@millan

Viewing 15 replies - 181 through 195 (of 254 total)
Author
Replies
  • in reply to: Date on the timer is wrong. #1993

    This is not the error, you just specified date wrong. In JavaScript months counting starts from 0 not 1, so it is from 0 to 11 not 1 to 12.

  • in reply to: server time #1983

    Hi,

    You must supply the theme generated by the server using PHP (or whatever else you might be using) and combine it with JavaScript. JavaScript can only get time of the current browser.

    PHP ‘date’ function can be used for this to provide full time, or to use ‘time’ to generate timestamp.

    Milan

  • in reply to: Widgets #1941

    Hi,

    My plugin adds new Sidebars, and you need to put widgets in these sidebars. So, if you make 3 sidebar sliders, each one will add new Sidebar on the WordPress Widgets page, and you need to add widgets there.

    Milan

  • in reply to: Multiple sidebars #1934

    Hi,

    You can have multiple sidebars at once. Your problem is that you have same settings for the tab position, so one covers the other. Set different tab position to the one that is only on front page, and both will be visible. Or put them on different sides of the screen if you prefer them located on same height.

    Milan

  • in reply to: Set timer time dynamically #1925

    That is very good solution, it is not ideal, but it works for some modes.

    Milan

  • in reply to: Set timer time dynamically #1923

    Hi,

    Right now there is no method to set custom values when the timer is already initialized. I plan to make some core changes to timer objects to add some low level control, but I am not sure when that will happen.

    Milan

  • Hi,

    My plugin uses JavaScript Date object by default, so I don’t need to add any new functionality, since it doesn’t depend on my plugin to calculate the date. So, when specifying the countdown target in my plugin you use Date object. There are many examples on the internet on how to create that object to support timezone offset calculation and specify UTC time and get time according to the visitor timezone.

    Also, there is a library called SugarJS that expands Date function with more direct way of specifying UTC time and date. I have added to the list to introduce examples in the plugin with next version that deal with UTC, but I don’t have free time to work on that now.

    If you want me for custom work on this, I don’t have any free time for the next 3 weeks to take on any new custom work. I suggest you search a bit on the internet about UTC and Date object, it is all already there.

    Milan

  • Hi,

    No, plugin doesn’t support this directly, but it depends on the Date object in JavaScript, and you can set that object to a time and date you want, and plugin will use it.

    Milan

  • in reply to: Minimal Browser Size Not Saving #1891

    Version 2.3.2 with the fix is released few hours ago.

  • in reply to: Want to add more info in verified topic #1882

    Hi,

    Plugin allows customization of templates used to display restriction messages to users, and you can make any changes you want. Information on how to do this is in the PDF developers guide (docs directory in plugins package). This is located at the beginning of the document under bbPress Templates.

    Basically, copy template you want to modify into your theme directory (create bbpress subdirectory inside theme directory), and make any changes you want. You can make changes in the plugin directly, but you will loose this when plugin is updated. Plugin will first attempt to load theme templates if exist.

    Regards,
    Milan Petrovic

  • in reply to: Multiple sidebars #1864

    I have found the problem, and new version will be released in the next couple of days. Thanks for reporting the problem.

    Milan

  • in reply to: Multiple sidebars #1863

    So, this is page (not post) with the ID? I will check it out and see what is wrong with this rule parsing. I will let you know as soon as I have something.

    Regards,
    Milan

  • in reply to: Classic Counter – Counting up from a number #1858

    Plugin has option to change interval for counting, but each interval is represented as 1. So, default interval is 1000, and if you put that to 3000 it will slow down counting 3 times, but it will still count 1 by 1, only the interval between changes is increased. From your code, you need this also.

    So, here is the example that has the interval changed from 1000 to 3000:

    var stceClockAnimated = jQuery('#stac-dev-animated').smartTimerCounter({
    	skin: 'Inline'
    	display: {},
    	timer: {
    		interval: 3000
    	}
    });

    You need the [b]timer[/b] bit to add to your code. It changes interval from 1000 (1 second) to 3000 (3 seconds).

    Milan

  • in reply to: Sidebar Sliders Showing Under IE Scroll Bar #1857

    Yes, use contact for here: http://www.smartplugins.info/contact/

  • in reply to: Minimal Browser Size Not Saving #1856

    Hi,

    Thanks for reporting this, I will check it out and release update soon with the fix (tomorrow most likely).

    Milan

Viewing 15 replies - 181 through 195 (of 254 total)