Plugin Directory

Changeset 2632442


Ignore:
Timestamp:
11/19/2021 06:29:24 AM (4 years ago)
Author:
codetot
Message:

Update v1.0.13

Location:
ct-optimization
Files:
37 added
4 edited

Legend:

Unmodified
Added
Removed
  • ct-optimization/trunk/README.txt

    r2580081 r2632442  
    1 === CodeTot Optimization ===
     1=== CT Optimization ===
    22Contributors: khoipro, codetot
    33Donate link: https://codetot.com
    4 Tags: optimization, compress, settings
     4Tags: optimization, compress, settings, codetot
    55Requires at least: 5.0
    66Tested up to: 5.8
    7 Stable tag: 1.0.12
     7Stable tag: 1.0.13
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020
    21211. Disable Gutenberg Block Editor
    22 2. Disable Gutenberg widgets
     222. Disable Gutenberg Widgets
    23233. Disable Emoji
    24244. Hide WordPress version
     
    3535Advanced Settings:
    3636
    37 1. Compress HTML
    38 2. Enable CDN Domain (works with ACF fields)
     371. Enable CDN Domain (works with ACF fields)
    3938
    4039Extra Plugin Settings:
     
    44433. Load Gravity Forms in Footer
    45444. Load [Lazysizes](https://github.com/aFarkas/lazysizes) scripts
     45
     46To see more free plugins, visit our [GitHub](https://github.com/codetot-web).
     47If you need extra support, please use a contact form at [our website](https://codetot.com).
    4648
    4749== Installation ==
     
    5759We just bring some helper functions from our core theme and release it under a single plugin. There is big advantage when using it with our core theme, but it should be better in most other themes.
    5860
    59 = Do I need any specific theme to work with? =
     61= Should it work with my current theme? =
    6062
    61 It depends your choices. Our suggestion is trying with a theme which has no page builder, because we provide a setting to disable Gutenberg. Right now this plugin has been integrated with all our themes as well.
     63Certainly. We just use filters/actions hooks.
    6264
    6365= Should I use it this plugin instead of caching plugin? =
     
    7274== Changelog ==
    7375
    74 = 1.0.12 =
     76= 1.0.13 =
     77
     78* Disable more Gravity form assets.
     79* Remove HTML Compress feature.
     80
     81= 1.0.12 =
    7582
    7683* Add option to disable Gutenberg widget admin UI.
  • ct-optimization/trunk/codetot-optimization.php

    r2580081 r2632442  
    99 * Plugin URI:        https://codetot.com
    1010 * Description:       Provides settings for enable/disable WordPress core features and some tweaks for ACF, Gravity Forms, such like Enable CDN, Lazyload assets.
    11  * Version:           1.0.12
     11 * Version:           1.0.13
    1212 * Author:            CODE TOT JSC
    1313 * Author URI:        https://codetot.com
     
    2323}
    2424
    25 define( 'CODETOT_OPTIMIZATION_VERSION', '1.0.12' );
     25define( 'CODETOT_OPTIMIZATION_VERSION', '1.0.13' );
    2626define( 'CODETOT_OPTIMIZATION_PATH', plugin_dir_path(__FILE__) );
    2727define( 'CODETOT_OPTIMIZATION_URL', plugin_dir_url(__FILE__) );
  • ct-optimization/trunk/includes/class-codetot-optimization-gravity-forms.php

    r2472189 r2632442  
    1616   */
    1717  private static $instance;
    18 
    19   /**
    20    * @var array
    21    */
    22   private $options;
    2318
    2419  /**
     
    6459    wp_dequeue_style( 'gforms_ready_class_css' );
    6560    wp_dequeue_style( 'gforms_browsers_css' );
     61    wp_dequeue_style( 'gform_basic' );
     62    wp_dequeue_style( 'gform_theme' );
     63    wp_dequeue_style( 'gform_theme_ie11' );
    6664  }
    6765
  • ct-optimization/trunk/includes/class-codetot-optimization.php

    r2486334 r2632442  
    4141    Codetot_Optimization_Gravity_Forms::instance();
    4242    Codetot_Optimization_Process::instance();
    43     Codetot_Optimization_Html_Compression::instance();
    4443  }
    4544
     
    5251    require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-codetot-optimization-assets.php';
    5352    require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-codetot-optimization-gravity-forms.php';
    54     require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-codetot-optimization-html-compression.php';
    5553
    5654    require_once plugin_dir_path( dirname( __FILE__ ) ) . 'admin/class-codetot-optimization-admin.php';
Note: See TracChangeset for help on using the changeset viewer.