Plugin Directory

Changeset 1895653


Ignore:
Timestamp:
06/20/2018 08:35:08 AM (8 years ago)
Author:
Richard-B
Message:

Version 1.0.3 fix ACF styling option not showing for all users

Location:
featured-image-toolkit
Files:
258 added
4 edited

Legend:

Unmodified
Added
Removed
  • featured-image-toolkit/trunk/README.txt

    r1891087 r1895653  
    1414== Description ==
    1515**FIT: FEATURED IMAGE TOOLKIT**
    16 Featured Image Toolkit (FIT) allows you to set minimum size requirements for featured images. Content editors are shown warnings in both the edit post screen and the featured image popup / modal if they attempt to use an image which is too small.
     16Featured Image Toolkit (FIT) allows you to set minimum or exact size requirements for featured images. Content editors are shown warnings in both the edit post screen and the featured image popup / modal if they attempt to use an image which is too small.
    1717
    1818This plugin was made for other developers and WordPress implementers who are asked everyday by their clients "what size should our featured images be?". Rather than having your clients write it down on a bit of paper, lose it, upload images which are far too small and look awful, why not show them a nice helpful warning and guide them within the edit post screen?
     
    2121
    2222 - Never post an ugly, stretched featured image again
    23  - Set minimum required sizes for posts and page featured images
    24  - Set exact required sizes for posts and page featured images
     23 - Set minimum required sizes for post and page featured images
     24 - Set exact required sizes for post and page featured images
    2525 - Warn editors if they try to use small images
    2626 - Visually guide editors when using the featured image library
    27  - Match ACF styling for image size warnings and disabled images for a smoother editing experience (requires ACF plugin)
     27 - Optionally match ACF Pro styling for image size warnings and disabled images for a smoother editing experience (requires ACF Pro plugin)
    2828
    2929**PREMIUM VERSION**
     
    48482. Edit screen warnings
    49493. Modal / Popup warnings
     504. ACF Pro styling
    5051
    5152== Frequently Asked Questions ==
     
    5657
    5758== Changelog ==
     59
     60= 1.0.3 =
     61* Bugfix: ACF Pro style settings not showing for all users
    5862
    5963= 1.0.2 =
  • featured-image-toolkit/trunk/admin/partials/fisr-admin-display.php

    r1891087 r1895653  
    6868        );
    6969        add_settings_section(
     70            'setting_section_general',
     71            // ID
     72            'FIT: General Options',
     73            // Title
     74            '',
     75            // Callback
     76            'fisr-setting-admin'
     77        );
     78        add_settings_section(
    7079            'setting_section_id_sizes',
    7180            // ID
     
    7988        add_settings_field(
    8089            'fisr_acf_style',
    81             'ACF Styling <p class="description">Requires ACF plugin to be installed, matches the same style for image warnings and disabled images</p>',
     90            'ACF Styling <p class="description">Requires ACF Pro plugin to be installed, matches the same style for image warnings and disabled images</p>',
    8291            array( $this, 'fisr_acf_style' ),
    8392            'fisr-setting-admin',
  • featured-image-toolkit/trunk/fit.php

    r1891087 r1895653  
    1111 * Plugin URI:        https://checkout.freemius.com/mode/dialog/plugin/2072/
    1212 * Description:       Set minimum size requirements for the featured image.
    13  * Version:           1.0.2
     13 * Version:           1.0.3
    1414 * Author:            Richard-B
    1515 * Author URI:        #
     
    6969    die;
    7070}
    71 define( 'FIT_VERSION', '1.0.2' );
     71define( 'FIT_VERSION', '1.0.3' );
    7272
    7373if ( !function_exists( 'fit_fs' ) ) {
Note: See TracChangeset for help on using the changeset viewer.