Changeset 3457328
- Timestamp:
- 02/09/2026 05:54:39 PM (13 days ago)
- Location:
- a1-tools/trunk
- Files:
-
- 2 edited
-
a1-tools.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
a1-tools/trunk/a1-tools.php
r3454108 r3457328 4 4 * Plugin URI: https://tools.a-1chimney.com 5 5 * Description: Connects your WordPress site to the A1 Tools platform for centralized management of contact information, social media links, and business details. 6 * Version: 1.4. 36 * Version: 1.4.4 7 7 * Requires at least: 5.0 8 8 * Requires PHP: 7.4 … … 21 21 22 22 // Plugin constants. 23 define( 'A1TOOLS_VERSION', '1.4. 3' );23 define( 'A1TOOLS_VERSION', '1.4.4' ); 24 24 define( 'A1TOOLS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); 25 25 define( 'A1TOOLS_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); … … 493 493 } 494 494 495 // Add CSS using WordPress enqueue system. 495 // Ensure the style handle exists before adding inline CSS. 496 if ( ! wp_style_is( 'a1tools-social', 'registered' ) ) { 497 wp_register_style( 'a1tools-social', false, array(), A1TOOLS_VERSION ); 498 } 499 if ( ! wp_style_is( 'a1tools-social', 'enqueued' ) ) { 500 wp_enqueue_style( 'a1tools-social' ); 501 } 496 502 wp_add_inline_style( 'a1tools-social', $css ); 497 503 -
a1-tools/trunk/readme.txt
r3454108 r3457328 4 4 Requires at least: 5.0 5 5 Tested up to: 6.9 6 Stable tag: 1.4. 36 Stable tag: 1.4.4 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 151 151 152 152 == Changelog == 153 154 = 1.4.4 = 155 * Fixed Elementor Social Icons widget not displaying on frontend 156 * Ensured CSS styles are properly registered and enqueued when shortcode runs 153 157 154 158 = 1.4.3 =
Note: See TracChangeset
for help on using the changeset viewer.