Changeset 3363433
- Timestamp:
- 09/17/2025 05:39:46 PM (6 months ago)
- Location:
- solid-dynamics
- Files:
-
- 2 added
- 8 edited
- 1 copied
-
tags/1.12.0 (copied) (copied from solid-dynamics/trunk)
-
tags/1.12.0/assets/solid-dynamics-icon.svg (added)
-
tags/1.12.0/readme.txt (modified) (2 diffs)
-
tags/1.12.0/settings/settings-fields.php (modified) (1 diff)
-
tags/1.12.0/settings/settings.php (modified) (4 diffs)
-
tags/1.12.0/solid-dynamics.php (modified) (1 diff)
-
trunk/assets/solid-dynamics-icon.svg (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/settings/settings-fields.php (modified) (1 diff)
-
trunk/settings/settings.php (modified) (4 diffs)
-
trunk/solid-dynamics.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
solid-dynamics/tags/1.12.0/readme.txt
r3341164 r3363433 3 3 Tags: elementor, dynamic tags, jet engine, macros 4 4 Tested up to: 6.8.1 5 Stable tag: 1.1 1.05 Stable tag: 1.12.0 6 6 Requires PHP: 7.0 7 7 License: GPLv2 … … 69 69 70 70 == Changelog == 71 72 = 1.12.0 = 73 2025-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 71 79 72 80 = 1.11.0 = -
solid-dynamics/tags/1.12.0/settings/settings-fields.php
r3301082 r3363433 47 47 ), 48 48 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(63 49 'id' => 'subtle_fade_in_entrance_animations', 64 50 'title' => 'Fade in Entrance Animations', -
solid-dynamics/tags/1.12.0/settings/settings.php
r3301082 r3363433 13 13 // Add admin menu. 14 14 add_action( 'admin_menu', array( $this, 'add_settings_page' ) ); 15 add_filter( 'wpsf_menu_icon_url_solid_dynamics', array( $this, 'menu_icon_url' ) ); 15 16 16 17 // Add an optional settings validation filter (recommended). … … 29 30 ) 30 31 ); 32 } 33 34 public function menu_icon_url() { 35 return plugin_dir_url(__DIR__) . 'assets/solid-dynamics-icon.svg'; 31 36 } 32 37 … … 61 66 } 62 67 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 75 68 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 ); 77 70 } 78 71 } … … 106 99 } 107 100 108 function main_open() {109 ?>110 <main id="content">111 <?php112 }113 114 function main_close() {115 ?>116 </main>117 <?php118 }119 120 101 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'); 122 103 } 123 104 -
solid-dynamics/tags/1.12.0/solid-dynamics.php
r3341164 r3363433 4 4 * Plugin Name: Solid Dynamics 5 5 * Description: Helpful utilities for Elementor, Jet Engine, and beyond. 6 * Version: 1.1 1.06 * Version: 1.12.0 7 7 * Author: Solid Digital 8 8 * Author URI: https://www.soliddigital.com -
solid-dynamics/trunk/readme.txt
r3341164 r3363433 3 3 Tags: elementor, dynamic tags, jet engine, macros 4 4 Tested up to: 6.8.1 5 Stable tag: 1.1 1.05 Stable tag: 1.12.0 6 6 Requires PHP: 7.0 7 7 License: GPLv2 … … 69 69 70 70 == Changelog == 71 72 = 1.12.0 = 73 2025-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 71 79 72 80 = 1.11.0 = -
solid-dynamics/trunk/settings/settings-fields.php
r3301082 r3363433 47 47 ), 48 48 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(63 49 'id' => 'subtle_fade_in_entrance_animations', 64 50 'title' => 'Fade in Entrance Animations', -
solid-dynamics/trunk/settings/settings.php
r3301082 r3363433 13 13 // Add admin menu. 14 14 add_action( 'admin_menu', array( $this, 'add_settings_page' ) ); 15 add_filter( 'wpsf_menu_icon_url_solid_dynamics', array( $this, 'menu_icon_url' ) ); 15 16 16 17 // Add an optional settings validation filter (recommended). … … 29 30 ) 30 31 ); 32 } 33 34 public function menu_icon_url() { 35 return plugin_dir_url(__DIR__) . 'assets/solid-dynamics-icon.svg'; 31 36 } 32 37 … … 61 66 } 62 67 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 75 68 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 ); 77 70 } 78 71 } … … 106 99 } 107 100 108 function main_open() {109 ?>110 <main id="content">111 <?php112 }113 114 function main_close() {115 ?>116 </main>117 <?php118 }119 120 101 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'); 122 103 } 123 104 -
solid-dynamics/trunk/solid-dynamics.php
r3341164 r3363433 4 4 * Plugin Name: Solid Dynamics 5 5 * Description: Helpful utilities for Elementor, Jet Engine, and beyond. 6 * Version: 1.1 1.06 * Version: 1.12.0 7 7 * Author: Solid Digital 8 8 * Author URI: https://www.soliddigital.com
Note: See TracChangeset
for help on using the changeset viewer.