mirror of
https://github.com/10h30/ultimatemember.git
synced 2026-07-11 18:56:10 +09:00
Merge pull request #1603 from ultimatemember/development/2.9.x
Version 2.9.2 enhancements
This commit is contained in:
@@ -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
|
||||
|
||||
+2
-1
@@ -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]
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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 {
|
||||
|
||||
+3
-1
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user