Plugin info

Total downloads: 3,165
Active installs: 60
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 5/28/2016 (3504 days ago)
Added to WordPress: 5/24/2016 (9 years old)
Minimum WordPress version: 4.5
Tested up to WordPress version: 4.5.33
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3504 days ago

20/100

Is Gallery One abandoned?

Possibly abandoned (last update 3504 days ago).

Compatibility

Requires WordPress: 4.5
Tested up to: 4.5.33
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Responsive Lightbox & Gallery
Rating 4.9/5 (1,979 reviews)Active installs 100,000
Lightbox Gallery
Rating 3.3/5 (44 reviews)Active installs 20,000
Easy Image Gallery
Rating 4.6/5 (41 reviews)Active installs 5,000
Gallery Manager
Rating 4.1/5 (53 reviews)Active installs 4,000
Featured Galleries
Rating 4.7/5 (20 reviews)Active installs 4,000
File Gallery
Rating 4.2/5 (13 reviews)Active installs 2,000

Description

See demo: http://shrimp2t.com/gallery-one/

Features

  • Fully responsive, Touch enabled
  • Unlimited albums
  • Unlimited images
  • Carousel
  • Gird
  • Justified
  • Masonry
  • Slideshow
  • Blog style (comming soon )
  • JustifiedGallery Light box
  • Load Facebook album images
  • Load Flickr album images
  • Add image from url
  • Shortcode creator

Load Facebook Album

Just paste your album url, example:

https://www.facebook.com/BillGates/photos/?tab=album&album_id=10153110017351961

Note: Your album status must be public to load.

Load Flickr Album

Just paste your album url, example:

https://www.flickr.com/photos/gianstefanofontana/albums/72157649693279051

Note: Your album status must be public to load.

Adding your own view in your theme

  • Create a folder gallery-one on your theme.
  • Inside folder which created add a file and name view.php
  • [Optional] Inside folder which created add a file and name config.php

Example file view.php:

settings ); /* You config data in file config.php var_dump( $this->media->get_data() ); // Gallery items data ?>

Example file config.php:

$config = array(
    'name' => __( 'Justified', 'gallery-one' ), // view name
    'js' => 'js/js.js',
    'css' => 'css/css.css',
    'view_settings' => array(
        array(
            'id' => 'margins',
            'default' => '10',
            'label' => __( 'Margins', 'gallery-one' ),
            'type' => 'text'
        ),
        array(
            'id'        => 'lightbox',
            'default'   => '1',
            'label'     => __( 'Lightbox', 'gallery-one' ),
            'type'      => 'checkbox'
        ),

    ),
);

Adding your own view in your plugin

  • Create new folder in your plugin, example: my-cool-views.
  • Add add new view folder example: my-cool-views/full-screen.
  • Add view.php file for you view my-cool-views/full-screen/view.php.
  • [Optional] Add config.php file for you view my-cool-views/full-screen/config.php.
  • Add your your views folder to view loader:

    add_filter( ‘gallery_one_get_template_folders’, ‘my_cool_views_path’);

    function my_cool_views_path( $view_paths ){
    $view_paths[‘my_cool_view’] = PATH_TO_MY_PLUGIN.’/my-cool-views’;
    return $view_paths;
    }

Config Parameters

name: (string) Name of your view.

css: (string/array) CSS files will enqueue when this view load.

js: (string/array) JS files will enqueue when this view load.

view_settings: (array) list field settings for your view.

view_settings Parameters:

  • id: Id of setting field.
  • label: Label of setting files.
  • default: Default value.
  • type: Field type: text|select|checkbox|textarea.
  • option: For field type select (array).
  • desc: Field description.

Installation

  1. Upload gallery-one folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress
  3. Use the Galleries Name screen to add gallery

Frequently Asked Questions

No FAQ available

Review feed

No reviews available

Screenshots

  1. Justified

    Justified

  2. Slider

    Slider

  3. Masonry

    Masonry

  4. Carousel

    Carousel

  5. Slider

    Slider

  6. Lightbox

    Lightbox

  7. Admin galleries

    Admin galleries

  8. Editing gallery

    Editing gallery

  9. Editing image info

    Editing image info

  10. Shortcode creator

    Shortcode creator

Changelog

1.0.0

  • Release