Changeset 3375462
- Timestamp:
- 10/09/2025 06:00:14 AM (6 months ago)
- Location:
- smaily-connect
- Files:
-
- 6 edited
- 1 copied
-
tags/1.3.3 (copied) (copied from smaily-connect/trunk)
-
tags/1.3.3/integrations/elementor/newsletter-widget.class.php (modified) (2 diffs)
-
tags/1.3.3/readme.txt (modified) (2 diffs)
-
tags/1.3.3/smaily-connect.php (modified) (2 diffs)
-
trunk/integrations/elementor/newsletter-widget.class.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/smaily-connect.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smaily-connect/tags/1.3.3/integrations/elementor/newsletter-widget.class.php
r3283436 r3375462 79 79 __( 'smaily', 'smaily-connect' ), 80 80 ); 81 } 82 83 /** 84 * Whether the element returns dynamic content. 85 * Set to determine whether to cache the element output or not. 86 * @return bool 87 */ 88 protected function is_dynamic_content(): bool { 89 return false; 81 90 } 82 91 … … 319 328 */ 320 329 private function listAutoresponders() { 330 // Frontend uses saved autoresponder_id. Autoresponders list is only needed 331 // in admin where the widget is configured. 332 if ( ! is_admin() ) { 333 return array(); 334 } 335 321 336 if ( ! $this->autoresponders ) { 322 337 $autoresponders = Helper::get_autoresponders_list( $this->get_options() ); -
smaily-connect/tags/1.3.3/readme.txt
r3363656 r3375462 6 6 Tested up to: 6.8 7 7 WC tested up to: 9.6.1 8 Stable tag: 1.3. 28 Stable tag: 1.3.3 9 9 License: GPLv3 or later 10 10 … … 61 61 == Changelog == 62 62 63 = 1.3.3 = 64 65 Improved the Elementor widget performance by reducing the number of API calls made during the rendering process. 66 67 = 1.3.2 = 68 69 Fixed a bug where the RSS-feed `pubDate` was not correctly formatted, which could lead to issues while importing sorted products into Smaily templates. Now the `pubDate` is formatted according to the RFC 822 standard, ensuring compatibility with RSS parsers. 70 63 71 = 1.3.1 = 64 72 -
smaily-connect/tags/1.3.3/smaily-connect.php
r3363656 r3375462 12 12 * Plugin URI: https://smaily.com/help/user-manual/smaily-connect-for-wordpress/ 13 13 * Text Domain: smaily-connect 14 * Version: 1.3. 214 * Version: 1.3.3 15 15 */ 16 16 … … 23 23 * Current plugin version. 24 24 */ 25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.3. 2' );25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.3.3' ); 26 26 27 27 /** -
smaily-connect/trunk/integrations/elementor/newsletter-widget.class.php
r3283436 r3375462 79 79 __( 'smaily', 'smaily-connect' ), 80 80 ); 81 } 82 83 /** 84 * Whether the element returns dynamic content. 85 * Set to determine whether to cache the element output or not. 86 * @return bool 87 */ 88 protected function is_dynamic_content(): bool { 89 return false; 81 90 } 82 91 … … 319 328 */ 320 329 private function listAutoresponders() { 330 // Frontend uses saved autoresponder_id. Autoresponders list is only needed 331 // in admin where the widget is configured. 332 if ( ! is_admin() ) { 333 return array(); 334 } 335 321 336 if ( ! $this->autoresponders ) { 322 337 $autoresponders = Helper::get_autoresponders_list( $this->get_options() ); -
smaily-connect/trunk/readme.txt
r3363656 r3375462 6 6 Tested up to: 6.8 7 7 WC tested up to: 9.6.1 8 Stable tag: 1.3. 28 Stable tag: 1.3.3 9 9 License: GPLv3 or later 10 10 … … 61 61 == Changelog == 62 62 63 = 1.3.3 = 64 65 Improved the Elementor widget performance by reducing the number of API calls made during the rendering process. 66 67 = 1.3.2 = 68 69 Fixed a bug where the RSS-feed `pubDate` was not correctly formatted, which could lead to issues while importing sorted products into Smaily templates. Now the `pubDate` is formatted according to the RFC 822 standard, ensuring compatibility with RSS parsers. 70 63 71 = 1.3.1 = 64 72 -
smaily-connect/trunk/smaily-connect.php
r3363656 r3375462 12 12 * Plugin URI: https://smaily.com/help/user-manual/smaily-connect-for-wordpress/ 13 13 * Text Domain: smaily-connect 14 * Version: 1.3. 214 * Version: 1.3.3 15 15 */ 16 16 … … 23 23 * Current plugin version. 24 24 */ 25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.3. 2' );25 define( 'SMAILY_CONNECT_PLUGIN_VERSION', '1.3.3' ); 26 26 27 27 /**
Note: See TracChangeset
for help on using the changeset viewer.