Plugin Directory

Changeset 3106567

Timestamp:
06/24/2024 09:37:27 AM (6 weeks ago)
Author:
itpathsolutions
Message:

1.1.8

  • Fix - Limit backend CSS to the plugin setting page only to avoid Collison with other backend section
Location:
scss-wp-editor
Files:
89 added
3 edited

Legend:

Unmodified
Added
Removed
  • scss-wp-editor/trunk/README.txt

    r3073806 r3106567  
    55Tested up to: 6.5
    66Requires PHP: 7.4
    7 Stable tag: 1.1.7
     7Stable tag: 1.1.
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090== Changelog ==
    9191
     92
     93
     94
     95
     96
    9297= 1.1.7 =
    9398*Release Date 19-4-2024*
  • scss-wp-editor/trunk/admin/class-scss-wp-editor-admin.php

    r2811770 r3106567  
    6565     * @since    1.0.0
    6666     */
    67     public function enqueue_styles() {
     67    public function enqueue_styles() {
    6868
    6969        /**
     
    7878         * class.
    7979         */
    80 
    81         wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/scss-wp-editor-admin.css', array(), $this->version, 'all' );
     80        if ( 'settings_page_scss-wp-editor' == $hook_suffix ) {
     81            wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/scss-wp-editor-admin.css', array(), $this->version, 'all' );
     82        }
    8283
    8384    }
     
    8889     * @since    1.0.0
    8990     */
    90     public function enqueue_scripts() {
     91    public function enqueue_scripts() {
    9192
    9293        /**
     
    101102         * class.
    102103         */
    103 
    104         wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/scss-wp-editor-admin.js', array( 'jquery' ), $this->version, false );
     104        if ( 'settings_page_scss-wp-editor' == $hook_suffix ) {
     105            wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/scss-wp-editor-admin.js', array( 'jquery' ), $this->version, false );
     106        }
    105107
    106108    }
  • scss-wp-editor/trunk/scss-wp-editor.php

    r3073806 r3106567  
    1717 * Plugin URI:        https://wordpress.org/plugins/scss-wp-editor/
    1818 * Description:       Easily Add, Compile and Optimize your SCSS to CSS within WordPress Admin.
    19  * Version:           1.1.7
     19 * Version:           1.1.
    2020 * Author:            IT Path Solutions
    2121 * Author URI:        https://www.itpathsolutions.com/
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'SCSS_WP_EDITOR_VERSION', '1.1.7' );
     38define( 'SCSS_WP_EDITOR_VERSION', '1.1.' );
    3939
    4040/**
Note: See TracChangeset for help on using the changeset viewer.