Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature - MailPoet Integration #755

Merged
merged 4 commits into from
Sep 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions assets/extensions-json/sections/all_extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -540,7 +540,7 @@
"demo_video_url": "xZr2R5CmVF8",
"released_date": "01/08/2024"
},
{
{
"title": "Authorize.net Payment",
"slug" : "user-registration-authorize-net",
"name" : "User Registration Authorize.net",
Expand All @@ -555,6 +555,23 @@
"setting_url": "admin.php?page=user-registration-settings&tab=payment",
"demo_video_url": "tNj6yg9okMQ",
"released_date": "01/08/2024"
}
},
{
"title": "MailPoet",
"slug" : "user-registration-mailpoet",
"name" : "User Registration MailPoet",
"image": "extensions-json/sections/images/mailpoet.png",
"excerpt": "Allows you to combine MailPoet with Everest Forms for enhanced email marketing efforts. Access over 50 pre-designed email templates for effective email marketing and lead conversion.",
"link": "https://wpuserregistration.com/features/mailpoet/?utm_source=dashboard-all-features&utm_medium=card-documentation-link",
"plan" : [
"personal",
"plus",
"professional",
"themegrill agency"
],
"released_date": "09/09/2024",
"setting_url": "admin.php?page=user-registration-settings&tab=integration",
"demo_video_url": ""
}
]
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/settings-icons/mailpoet.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion includes/functions-ur-core.php
Original file line number Diff line number Diff line change
Expand Up @@ -3139,7 +3139,7 @@ function ur_format_field_values_using_field_key( $field_key, $field_value ) {
} elseif ( is_array( $field_value ) && ! empty( $field_value ) ) {
$field_value = implode( ', ', $field_value );
} elseif ( ! empty( json_decode( $field_value ) ) ) { // phpcs:ignore;
$field_value = implode( ', ', json_decode( $field_value ) );
$field_value = is_array( json_decode( $field_value ) ) ? implode( ', ', json_decode( $field_value ) ) : $field_value;
}
break;
case 'country':
Expand Down
Loading