=== Advanced Custom Fields - NextGEN Gallery Field add-on ===
Contributors: Ales Loziak, Omicron7
Tags: acf, acf add-on, nextgen gallery, custom field, nextgen gallery field
Requires at least: 3.0
Tested up to: 3.3.2
Stable tag: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Adds a NextGEN Gallery Field to Advanced Custom Fields. Select one or more NextGEN Galleries and assign them to the post.

== Description ==

This is an add-on for the [Advanced Custom Fields](http://wordpress.org/extend/plugins/advanced-custom-fields/)
WordPress plugin and will not provide any functionality to WordPress unless Advanced Custom Fields is installed
and activated.

The NextGEN Gallery field provides a dropdown (select or multi-select) of NextGEN Gallery names
and the ability to map the selected NextGEN Gallery to the post.
The get_value() api returns an array of the selected NextGEN Gallery ids.

= Example
This example should show a NextGENGallery gallery.

<code>
if (get_field ('nextgen_gallery_id') ):
	echo nggShowGallery( get_field ('nextgen_gallery_id') );
endif;
</code>

= Todo =
* Check if the NextGEN Gallery plugin is installed.
* Hide "Multi-Select Size" field when is used "Select" as an "Input Method".

== Installation ==

The NextGEN Gallery Field plugin can be used as WordPress plugin or included in other plugins or themes.
There is no need to call the Advanced Custom Fields `register_field()` method for this field.

* WordPress plugin
	1. Download the plugin and extract it to `/wp-content/plugins/` directory.
	2. Activate the plugin through the `Plugins` menu in WordPress.

== Frequently Asked Questions ==

= I've activated the plugin, but nothing happens! =

Make sure you have [Advanced Custom Fields](http://wordpress.org/extend/plugins/advanced-custom-fields/) installed and
activated. This is not a standalone plugin for WordPress, it only adds additional functionality to Advanced Custom Fields.

= I just see on my post/page the name of the NextGEN Gallery Add-on only and no more nexts fields?

Make sure you have [NextGEN Gallery plugin](http://wordpress.org/extend/plugins/nextgen-gallery/) installed and
activated. This is not a standalone plugin for WordPress. It only adds additional functionality to Advanced Custom Fields and works together with NextGEN Gallery plugin.

== Screenshots ==

1. NextGEN Gallery Field.
3. Adding a NextGEN Gallery to a page.

== Changelog ==

= 1.0 =
* Initial Release