Plugin Directory

Changeset 3363433


Ignore:
Timestamp:
09/17/2025 05:39:46 PM (6 months ago)
Author:
soliddigital
Message:

Update to version 1.12.0 from GitHub

Location:
solid-dynamics
Files:
2 added
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • solid-dynamics/tags/1.12.0/readme.txt

    r3341164 r3363433  
    33Tags: elementor, dynamic tags, jet engine, macros
    44Tested up to: 6.8.1
    5 Stable tag: 1.11.0
     5Stable tag: 1.12.0
    66Requires PHP: 7.0
    77License: GPLv2
     
    6969
    7070== Changelog ==
     71
     72= 1.12.0 =
     732025-09-17
     74- Remove <main> element option as hello elementor handles skip links.
     75- Remove page title checkbox as hello elementor has this now.
     76- Fix fade in animation adjustment.
     77- Add menu icon.
     78
    7179
    7280= 1.11.0 =
  • solid-dynamics/tags/1.12.0/settings/settings-fields.php

    r3301082 r3363433  
    4747            ),
    4848            array(
    49                 'id'      => 'hide_hello_elementor_page_title',
    50                 'title'   => 'Hello Elementor Page Title',
    51                 'desc'    => 'Hide the page title from the Hello Elementor theme.',
    52                 'type'    => 'checkbox',
    53                 'default' => 0,
    54             ),
    55             array(
    56                 'id'      => 'wrap_content',
    57                 'title'   => 'Wrap Elementor Content',
    58                 'desc'    => 'Wrap Elementor content with `main#content`.',
    59                 'type'    => 'checkbox',
    60                 'default' => 0,
    61             ),
    62             array(
    6349                'id'      => 'subtle_fade_in_entrance_animations',
    6450                'title'   => 'Fade in Entrance Animations',
  • solid-dynamics/tags/1.12.0/settings/settings.php

    r3301082 r3363433  
    1313        // Add admin menu.
    1414        add_action( 'admin_menu', array( $this, 'add_settings_page' ) );
     15        add_filter( 'wpsf_menu_icon_url_solid_dynamics', array( $this, 'menu_icon_url' ) );
    1516
    1617        // Add an optional settings validation filter (recommended).
     
    2930            )
    3031        );
     32    }
     33
     34    public function menu_icon_url() {
     35        return plugin_dir_url(__DIR__) . 'assets/solid-dynamics-icon.svg';
    3136    }
    3237
     
    6166        }
    6267
    63         if ($settings['elementor_hide_hello_elementor_page_title']) {
    64             add_filter( 'hello_elementor_page_title', '__return_false');
    65         }
    66 
    67         if ($settings['elementor_wrap_content']) {
    68             add_action( 'elementor/theme/before_do_single', [$this, 'main_open'] );
    69             add_action( 'elementor/theme/after_do_single', [$this, 'main_close'] );
    70 
    71             add_action( 'elementor/theme/before_do_archive', [$this, 'main_open'] );
    72             add_action( 'elementor/theme/after_do_archive', [$this, 'main_close'] );
    73         }
    74 
    7568        if ($settings['elementor_subtle_fade_in_entrance_animations']) {
    76             add_action( 'wp_enqueue_scripts', [$this, 'elementor_subtle_fade_in_entrance_animations'] );
     69            add_action( 'wp_enqueue_scripts', [$this, 'elementor_subtle_fade_in_entrance_animations'], 9999 );
    7770        }
    7871    }
     
    10699    }
    107100
    108     function main_open() {
    109         ?>
    110         <main id="content">
    111         <?php
    112     }
    113 
    114     function main_close() {
    115         ?>
    116         </main>
    117         <?php
    118     }
    119 
    120101    function elementor_subtle_fade_in_entrance_animations() {
    121         wp_enqueue_style('sd-elementor-subtle-fade-in-entrance-animations', plugin_dir_url(__DIR__) . 'assets/elementor-subtle-fade-in-entrance-animations.css', ['e-animations'], '1.0.0');
     102        wp_enqueue_style('sd-elementor-subtle-fade-in-entrance-animations', plugin_dir_url(__DIR__) . 'assets/elementor-subtle-fade-in-entrance-animations.css', null, '1.0.0');
    122103    }
    123104
  • solid-dynamics/tags/1.12.0/solid-dynamics.php

    r3341164 r3363433  
    44 * Plugin Name:       Solid Dynamics
    55 * Description:       Helpful utilities for Elementor, Jet Engine, and beyond.
    6  * Version:           1.11.0
     6 * Version:           1.12.0
    77 * Author:            Solid Digital
    88 * Author URI:        https://www.soliddigital.com
  • solid-dynamics/trunk/readme.txt

    r3341164 r3363433  
    33Tags: elementor, dynamic tags, jet engine, macros
    44Tested up to: 6.8.1
    5 Stable tag: 1.11.0
     5Stable tag: 1.12.0
    66Requires PHP: 7.0
    77License: GPLv2
     
    6969
    7070== Changelog ==
     71
     72= 1.12.0 =
     732025-09-17
     74- Remove <main> element option as hello elementor handles skip links.
     75- Remove page title checkbox as hello elementor has this now.
     76- Fix fade in animation adjustment.
     77- Add menu icon.
     78
    7179
    7280= 1.11.0 =
  • solid-dynamics/trunk/settings/settings-fields.php

    r3301082 r3363433  
    4747            ),
    4848            array(
    49                 'id'      => 'hide_hello_elementor_page_title',
    50                 'title'   => 'Hello Elementor Page Title',
    51                 'desc'    => 'Hide the page title from the Hello Elementor theme.',
    52                 'type'    => 'checkbox',
    53                 'default' => 0,
    54             ),
    55             array(
    56                 'id'      => 'wrap_content',
    57                 'title'   => 'Wrap Elementor Content',
    58                 'desc'    => 'Wrap Elementor content with `main#content`.',
    59                 'type'    => 'checkbox',
    60                 'default' => 0,
    61             ),
    62             array(
    6349                'id'      => 'subtle_fade_in_entrance_animations',
    6450                'title'   => 'Fade in Entrance Animations',
  • solid-dynamics/trunk/settings/settings.php

    r3301082 r3363433  
    1313        // Add admin menu.
    1414        add_action( 'admin_menu', array( $this, 'add_settings_page' ) );
     15        add_filter( 'wpsf_menu_icon_url_solid_dynamics', array( $this, 'menu_icon_url' ) );
    1516
    1617        // Add an optional settings validation filter (recommended).
     
    2930            )
    3031        );
     32    }
     33
     34    public function menu_icon_url() {
     35        return plugin_dir_url(__DIR__) . 'assets/solid-dynamics-icon.svg';
    3136    }
    3237
     
    6166        }
    6267
    63         if ($settings['elementor_hide_hello_elementor_page_title']) {
    64             add_filter( 'hello_elementor_page_title', '__return_false');
    65         }
    66 
    67         if ($settings['elementor_wrap_content']) {
    68             add_action( 'elementor/theme/before_do_single', [$this, 'main_open'] );
    69             add_action( 'elementor/theme/after_do_single', [$this, 'main_close'] );
    70 
    71             add_action( 'elementor/theme/before_do_archive', [$this, 'main_open'] );
    72             add_action( 'elementor/theme/after_do_archive', [$this, 'main_close'] );
    73         }
    74 
    7568        if ($settings['elementor_subtle_fade_in_entrance_animations']) {
    76             add_action( 'wp_enqueue_scripts', [$this, 'elementor_subtle_fade_in_entrance_animations'] );
     69            add_action( 'wp_enqueue_scripts', [$this, 'elementor_subtle_fade_in_entrance_animations'], 9999 );
    7770        }
    7871    }
     
    10699    }
    107100
    108     function main_open() {
    109         ?>
    110         <main id="content">
    111         <?php
    112     }
    113 
    114     function main_close() {
    115         ?>
    116         </main>
    117         <?php
    118     }
    119 
    120101    function elementor_subtle_fade_in_entrance_animations() {
    121         wp_enqueue_style('sd-elementor-subtle-fade-in-entrance-animations', plugin_dir_url(__DIR__) . 'assets/elementor-subtle-fade-in-entrance-animations.css', ['e-animations'], '1.0.0');
     102        wp_enqueue_style('sd-elementor-subtle-fade-in-entrance-animations', plugin_dir_url(__DIR__) . 'assets/elementor-subtle-fade-in-entrance-animations.css', null, '1.0.0');
    122103    }
    123104
  • solid-dynamics/trunk/solid-dynamics.php

    r3341164 r3363433  
    44 * Plugin Name:       Solid Dynamics
    55 * Description:       Helpful utilities for Elementor, Jet Engine, and beyond.
    6  * Version:           1.11.0
     6 * Version:           1.12.0
    77 * Author:            Solid Digital
    88 * Author URI:        https://www.soliddigital.com
Note: See TracChangeset for help on using the changeset viewer.