Articles with tag 'Widget'

How to fix the bug in iStat Pro on Mountain Lion

With the release of Mountain Lion profit Widget iStat has stopped properly display processes. To remedy the problem, simply run two small changes in the two files that are concerned with the process visualization.

Continued ...

WordPress: add a panel in the dashboard

It may be useful in developing a Plugin and not only, place an information panel, summary, or whatever, directly in the Dashboard (Board) of WordPress, as is the case for standard board of the "Current Status", "Recent Comments "etc ...
Wordpress allows to add our panels in a simple way, by exploiting the function wp_add_dashboard_widget() :

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/ / First of all we add a hook through 'wp_dashboard_setup'
/ / To record our creation function
, 'example_add_dashboard_widgets' ) ; add_action ('wp_dashboard_setup', 'example_add_dashboard_widgets');

/ / This adds the panel to physically Dashboard
example_add_dashboard_widgets function () {
, wp_add_dashboard_widget ('example_dashboard_widget',
'Example Dashboard Widget',
; 'Example_dashboard_widget_function');
}

/ / Draw the contents of the panel
example_dashboard_widget_function function () {
; echo "Try My Message Board Widgets";
}

The function wp_add_dashboard_widget() has the following synopsis:

1
2
3
4
5
6
7
8
9
10
/ /
/ / $ Widget_id - is a unique identifier type slug.
/ / Will be used also as a class in the style css
/ / $ Widget_name - Name Widget displayed in the bar
/ / $ Callback - The name of the device's convenient that will show the conntenuto
/ / $ Control_callback - (Optional) Name of the function used to send
/ / Parameters through forms
/ /
, wp_add_dashboard_widget ($ widget_id,
$callback , $control_callback = null ) Widget_name $, $ callback, $ control_callback = null)

Continued ...

10,000 Thanks WP

WP Bannerize
A nice record and a great satisfaction!

Continued ...

2.4.1 WP Bannerize

It was a little 'I wanted to report it, since WP Bannerize is about to hit 10,000 downloads! But time - lately - it really is a tyrant!

WP Bannerize Download

Continued ...

Very short snippet: WordPress, list categories with checkbox

In recent days I have released a new major release (2.3.0) of WordPress plugin WP Bannerize the last for this year. In addition to having introduced the use of Widgets (which I hope to write something soon) or "finally" allowed to filter banner by category.

Continued ...

Blogbabel reopens! Closed for holidays from July 19 to August 2

Blogbabel , who had taken a break some time ago , reopens with a new look and many new features. The reopening of Blogbabel coincides with my well-deserved break, a couple of weeks off after two long years! Cause birth twins.

On my return in early August, I hope to reactivate all the widgets for the monitoring of statistics Blogbabel . I have already contacted those responsible to check the availability of the API , at the time of writing apparently disabled.

For now, then, break and a good rest at all :)

Continued ...

Widgets Christmas: falling snow in Flash

Update service not available
See Create a snowflake in Flash

Thanks to the "urge" of TV Revolution I made a little Widget Christmas (Let's see if we can improve it with your comments).
To use it, simply insert the following code on your website:

1

The parameter h determines the height of the movie in pixels. By default this is shown in absolute position and width to 100%. To change this setting, use abs=0 to place the snow inside the page and not above. Instead, use w=800 to set a personal dimension. For example:

1

Create snow 50 pixels high, in relative position and wide 640 pixels, as shown below:

Update service not available - See Create a snowflake in Flash

Continued ...