Plugin Directory


Ignore:
Timestamp:
05/16/2017 07:10:45 PM (9 years ago)
Author:
bradvin
Message:

update to v1.2.26

Location:
foobox-image-lightbox
Files:
214 added
9 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • foobox-image-lightbox/trunk/foobox-free.php

    r1656607 r1658755  
    55Plugin URI: http://fooplugins.com/plugins/foobox/
    66Description: The best responsive lightbox for WordPress.
    7 Version: 1.2.25
     7Version: 1.2.26
    88Author: FooPlugins
    99Author URI: http://fooplugins.com
     
    2121    define( 'FOOBOX_BASE_PATH', plugin_dir_path( __FILE__ ) );
    2222    define( 'FOOBOX_BASE_URL', plugin_dir_url( __FILE__ ) );
    23     define( 'FOOBOX_BASE_VERSION', '1.2.25' );
     23    define( 'FOOBOX_BASE_VERSION', '1.2.26' );
    2424    // Create a helper function for easy SDK access.
    2525    function foobox_fs()
  • foobox-image-lightbox/trunk/free/includes/class-script-generator.php

    r1656607 r1658755  
    3131            $count_message       = self::get_option( $fbx_options, 'count_message', 'image %index of %total' );
    3232            $powered_by_link     = self::is_option_checked( $fbx_options, 'powered_by_link', false );
    33             $show_caption        = self::is_option_checked( $fbx_options, 'show_caption', true );
     33            $hide_caption        = self::is_option_checked( $fbx_options, 'hide_caption', true );
    3434            $captions_hover      = self::is_option_checked( $fbx_options, 'captions_show_on_hover', false );
    3535
     
    6767                $options['countMessage'] = 'countMessage:\'' . addslashes( $count_message ) . '\'';
    6868            }
    69             if ( !$show_caption ) {
     69            if ( $hide_caption ) {
    7070                $options['images'] = 'images: { showCaptions:false }';
    7171            } else {
  • foobox-image-lightbox/trunk/free/includes/class-settings.php

    r1656607 r1658755  
    9494
    9595            $settings[] = array(
    96                 'id'      => 'show_caption',
    97                 'title'   => __( 'Show Captions', 'foobox' ),
    98                 'desc'    => __( 'Whether or not to show captions for images', 'foobox' ),
    99                 'default' => 'on',
     96                'id'      => 'hide_caption',
     97                'title'   => __( 'Hide Captions', 'foobox' ),
     98                'desc'    => __( 'Whether or not to hide captions for images.', 'foobox' ),
    10099                'type'    => 'checkbox',
    101100                'section' => 'settings',
  • foobox-image-lightbox/trunk/readme.txt

    r1656607 r1658755  
    7676
    7777== Changelog ==
     78
     79= 1.2.26 =
     80* Fix : disappearing captions. Renamed "Show Captions" setting to "Hide Captions" and default to disabled.
    7881
    7982= 1.2.25 =
Note: See TracChangeset for help on using the changeset viewer.