From 8a867374724c4a841426ce32123df4b883747392 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Tue, 3 Dec 2024 14:30:01 +0200 Subject: [PATCH 1/3] * updated methods for properly searchable code; --- includes/class-init.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/class-init.php b/includes/class-init.php index 1aebcfb7..285035c4 100644 --- a/includes/class-init.php +++ b/includes/class-init.php @@ -15,7 +15,6 @@ if ( ! class_exists( 'UM' ) ) { * @method UM_bbPress_API bbPress_API() * @method UM_Followers_API Followers_API() * @method UM_Friends_API Friends_API() - * @method UM_Instagram_API Instagram_API() * @method UM_Mailchimp Mailchimp() * @method UM_Messaging_API Messaging_API() * @method UM_myCRED myCRED() @@ -33,7 +32,7 @@ if ( ! class_exists( 'UM' ) ) { * @method UM_Terms_Conditions Terms_Conditions() * @method UM_Private_Content Private_Content() * @method UM_User_Locations User_Locations() - * @method UM_Photos_API Photos_API() + * @method UM_User_Photos User_Photos() * @method UM_Groups Groups() * @method UM_Frontend_Posting Frontend_Posting() * @method UM_Notes Notes() @@ -42,6 +41,7 @@ if ( ! class_exists( 'UM' ) ) { * @method UM_ForumWP ForumWP() * @method UM_Profile_Tabs Profile_Tabs() * @method UM_JobBoardWP JobBoardWP() + * @method UM_Zapier Zapier() * @method UM_Google_Authenticator Google_Authenticator() */ final class UM extends UM_Functions { From e63e27f5c09c3854268a215ff86bf22cc55ebe39 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Mon, 16 Dec 2024 12:22:42 +0200 Subject: [PATCH 2/3] * updated .distignore --- .distignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.distignore b/.distignore index 213969a6..a161a2b4 100644 --- a/.distignore +++ b/.distignore @@ -1,5 +1,6 @@ # Directories /.wordpress-org +/.git /.github /assets/sass /assets/libs/fontawesome/scss @@ -10,6 +11,7 @@ # Files /.bowerrc +/.distignore /.editorconfig /.gitattributes /.gitignore From b41ac2bb9680f2d70b772f9dcc1ec12a691441e4 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Mon, 16 Dec 2024 12:35:32 +0200 Subject: [PATCH 3/3] * uncommented Zapier extension; --- changelog.txt | 3 ++- includes/admin/templates/extensions.php | 14 +++++++------- readme.txt | 4 +++- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/changelog.txt b/changelog.txt index 858e8a78..d5418638 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,9 +1,10 @@ == Changelog == -= 2.9.2 December 04, 2024 = += 2.9.2 December 16, 2024 = * Enhancements: + - Added: Compatibility with the new [Ultimate Member - Zapier](https://ultimatemember.com/extensions/zapier/) extension - Added: `UM()->is_new_ui()` function for future enhancements related to new UI - Tweak: Changed hook's priority for initialization of email templates paths - Tweak: Removed `load_plugin_textdomain` due to (article)[https://make.wordpress.org/core/2024/10/21/i18n-improvements-6-7/#Enhanced-support-for-only-using-PHP-translation-files] diff --git a/includes/admin/templates/extensions.php b/includes/admin/templates/extensions.php index af59fb88..224ce622 100644 --- a/includes/admin/templates/extensions.php +++ b/includes/admin/templates/extensions.php @@ -167,18 +167,18 @@ $premium['profile-tabs'] = array( ); $premium['stripe'] = array( - 'url' => 'https://ultimatemember.com/extensions/stripe/', + 'url' => 'https://ultimatemember.com/extensions/stripe/', 'img' => 'stripe.png', 'name' => 'Stripe', 'desc' => 'Sell paid memberships to access your website via Stripe subscriptions', ); -//$premium['zapier'] = array( -// 'url' => 'https://ultimatemember.com/extensions/zapier/', -// 'img' => 'zapier.png', -// 'name' => 'Zapier', -// 'desc' => 'Integrates your Zapier with Ultimate Member', -//); +$premium['zapier'] = array( + 'url' => 'https://ultimatemember.com/extensions/zapier/', + 'img' => 'zapier.png', + 'name' => 'Zapier', + 'desc' => 'Allow to integrate the Zapier popular apps with Ultimate Member', +); $free['jobboardwp'] = array( 'url' => 'https://wordpress.org/plugins/um-jobboardwp', diff --git a/readme.txt b/readme.txt index 6d8c5689..e70377d5 100644 --- a/readme.txt +++ b/readme.txt @@ -41,6 +41,7 @@ Read about all of the plugin's features at [Ultimate Member](https://ultimatemem Ultimate Member has a range of extensions that allow you to extend the power of the plugin. You can purchase all of these extensions at a significant discount with our [All Access Pass](https://ultimatemember.com/pricing/) or you can purchase extensions individually. +* [Zapier](https://ultimatemember.com/extensions/zapier/) - Allow to integrate the Zapier popular apps with Ultimate Member * [Stripe](https://ultimatemember.com/extensions/stripe/) - Sell paid memberships to access your website via Stripe subscriptions * [User Notes](https://ultimatemember.com/extensions/user-notes/) - Allow users to create public and private notes from their profile * [Profile Tabs](https://ultimatemember.com/extensions/profile-tabs/) - Allow to add the custom tabs to profiles @@ -166,10 +167,11 @@ No specific extensions are needed. But we highly recommended keep active these P IMPORTANT: PLEASE UPDATE THE PLUGIN TO AT LEAST VERSION 2.6.7 IMMEDIATELY. VERSION 2.6.7 PATCHES SECURITY PRIVILEGE ESCALATION VULNERABILITY. PLEASE SEE [THIS ARTICLE](https://docs.ultimatemember.com/article/1866-security-incident-update-and-recommended-actions) FOR MORE INFORMATION -= 2.9.2 2024-12-04 = += 2.9.2 2024-12-16 = **Enhancements** +* Added: Compatibility with the new [Ultimate Member - Zapier](https://ultimatemember.com/extensions/zapier/) extension * Added: `UM()->is_new_ui()` function for future enhancements related to new UI * Tweak: Changed hook's priority for initialization of email templates paths * Tweak: Removed `load_plugin_textdomain` due to (article)[https://make.wordpress.org/core/2024/10/21/i18n-improvements-6-7/#Enhanced-support-for-only-using-PHP-translation-files]