diff --git a/assets/extensions-json/sections/all_extensions.json b/assets/extensions-json/sections/all_extensions.json index a4c5f9d5c..476e5caab 100644 --- a/assets/extensions-json/sections/all_extensions.json +++ b/assets/extensions-json/sections/all_extensions.json @@ -135,23 +135,6 @@ "demo_video_url": "pcwPjCt7N2I", "popular_rank": 8 }, - { - "title": "User Registration", - "slug": "everest-forms-user-registration", - "name": "Everest Forms User Registration", - "image": "extensions-json/sections/images/user-registration.png", - "excerpt": "Allows you to create a custom WordPress user registration form instantly in few simple steps. You can add or remove input fields as per the style of your registration using this feature.", - "link": "https://docs.everestforms.net/docs/user-registration/?utm_source=dashboard-all-feature&utm_medium=card-documentation-link", - "released_date": "16/07/2019", - "plan": [ - "personal", - "agency", - "themegrill agency" - ], - "setting_url": "", - "demo_video_url": "MEyuznG2Tok", - "popular_rank": 12 - }, { "title": "Google Sheets", "slug": "everest-forms-google-sheets", @@ -966,6 +949,23 @@ "setting_url": "admin.php?page=evf-settings&tab=integration§ion=getgist", "demo_video_url": "d2Ujl82OJuA", "popular_rank": "xx" + }, + { + "title": "User Registration", + "slug": "everest-forms-user-registration", + "name": "Everest Forms User Registration", + "image": "extensions-json/sections/images/user-registration.png", + "excerpt": "Allows you to create a custom WordPress user registration form instantly in few simple steps. You can add or remove input fields as per the style of your registration using this feature.", + "link": "https://docs.everestforms.net/docs/user-registration/?utm_source=dashboard-all-feature&utm_medium=card-documentation-link", + "released_date": "16/07/2019", + "plan": [ + "personal", + "agency", + "themegrill agency" + ], + "setting_url": "admin.php?page=evf-settings&tab=user_registration", + "demo_video_url": "MEyuznG2Tok", + "popular_rank": 12 } ] } diff --git a/assets/images/settings-icons/user_registration.svg b/assets/images/settings-icons/user_registration.svg new file mode 100644 index 000000000..14b242f7c --- /dev/null +++ b/assets/images/settings-icons/user_registration.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/changelog.txt b/changelog.txt index dfa130633..7d00ba8e4 100644 --- a/changelog.txt +++ b/changelog.txt @@ -11,6 +11,7 @@ * Fix - Background color for PDF submission. * Dev - Get gist integration. * Dev - Slack Integration Module. +* Dev - User Registration Social Login. = 3.0.4.2 - 03-11-2024 diff --git a/includes/admin/class-evf-admin-settings.php b/includes/admin/class-evf-admin-settings.php index 7adf695c9..0033c72da 100644 --- a/includes/admin/class-evf-admin-settings.php +++ b/includes/admin/class-evf-admin-settings.php @@ -258,11 +258,27 @@ public static function output_fields( $options ) { $tabs_array[ $current_tab ] = isset( $tabs_array[ $current_tab ] ) ? $tabs_array[ $current_tab ] : array(); } - echo '
+ $class_for_title = isset( $value['id'] ) && ! empty( $value['id'] ) ? 'everest-forms-settings-title_' . $value['id'] : ''; + + echo '
'; - foreach ( $tabs_array as $icon_key => $icon_value ) { - echo '' . evf_file_get_contents( '/assets/images/settings-icons/' . $icon_key . '.svg' ) . ''; //phpcs:ignore + + // For now icon is ignored. + if( isset( $value['image_name'] ) && ! empty( $value['image_name'] ) ) { + + /** + * Icon for Settings tab with different icon. + * + * @since 1.7.9 + */ + + // echo '' . evf_file_get_contents( '/assets/images/settings-icons/' . $value['image_name'] . '.svg' ) . ''; + }else{ + foreach ( $tabs_array as $icon_key => $icon_value ) { + echo '' . evf_file_get_contents( '/assets/images/settings-icons/' . $icon_key . '.svg' ) . ''; //phpcs:ignore + } } + echo '

' . esc_html( $value['title'] ) . '

'; diff --git a/readme.txt b/readme.txt index 2d1767273..561746cd1 100644 --- a/readme.txt +++ b/readme.txt @@ -318,6 +318,7 @@ Yes you can! Join in on our [GitHub repository](https://github.com/wpeverest/eve * Fix - Tooltips does not work on mobile. * Fix - Background color for PDF submission. * Dev - Get gist integration. +* Dev - User Registration Social Login. * Dev - Slack Integration Module. = 3.0.4.2 - 03-11-2024