Plugin Directory

Changeset 2927004


Ignore:
Timestamp:
06/16/2023 09:57:50 AM (3 years ago)
Author:
appfulapp
Message:

Adjusted plugin description fixed user meta fetching

Location:
appful-app
Files:
4 edited
72 copied

Legend:

Unmodified
Added
Removed
  • appful-app/tags/3.1.4/appful-app.php

    r2920603 r2927004  
    1212 * Plugin URI:        https://appful.io
    1313 * Description:       Appful® is the number 1 plugin for turning your WordPress Content into a native, beautiful app on iOS & Android in under 5 minutes.
    14  * Version:           3.1.3
     14 * Version:           3.1.4
    1515 * Requires at least: 5.8
    1616 * Requires PHP:      7.4
  • appful-app/tags/3.1.4/includes/wp/mapper/UserMapper.php

    r2907312 r2927004  
    1010class UserMapper {
    1111    public static function to_domain( WP_User $user ): User {
    12         $first_name = get_user_meta( $user->ID, "first_name", true );
     12        $first_name = $user->first_name;
    1313        if ( ! $first_name ) {
    1414            $first_name = "";
    1515        }
    1616
    17         $last_name = get_user_meta( $user->ID, "last_name", true );
     17        $last_name = $user->last_name;
    1818        if ( ! $last_name ) {
    1919            $last_name = "";
    2020        }
    2121
    22         $display_name = get_user_meta( $user->ID, "display_name", true );
     22        $display_name = $user->display_name;
    2323        if ( ! $display_name ) {
    2424            $display_name = "";
  • appful-app/tags/3.1.4/readme.txt

    r2920603 r2927004  
    66Tested up to: 6.2
    77Requires PHP: 7.4
    8 Stable tag: 3.1.3
     8Stable tag: 3.1.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020- 24/7 personal support
    2121- Free Test App before buying
     22
     23
     24**If you are interested in using appful or need support, please contact us via email at [mail[ätt]appful.io](mailto:mail@appful.io) or just visit us at [appful.io](https://home.appful.io "Appful")**
    2225
    2326
  • appful-app/trunk/appful-app.php

    r2920603 r2927004  
    1212 * Plugin URI:        https://appful.io
    1313 * Description:       Appful® is the number 1 plugin for turning your WordPress Content into a native, beautiful app on iOS & Android in under 5 minutes.
    14  * Version:           3.1.3
     14 * Version:           3.1.4
    1515 * Requires at least: 5.8
    1616 * Requires PHP:      7.4
  • appful-app/trunk/includes/wp/mapper/UserMapper.php

    r2907312 r2927004  
    1010class UserMapper {
    1111    public static function to_domain( WP_User $user ): User {
    12         $first_name = get_user_meta( $user->ID, "first_name", true );
     12        $first_name = $user->first_name;
    1313        if ( ! $first_name ) {
    1414            $first_name = "";
    1515        }
    1616
    17         $last_name = get_user_meta( $user->ID, "last_name", true );
     17        $last_name = $user->last_name;
    1818        if ( ! $last_name ) {
    1919            $last_name = "";
    2020        }
    2121
    22         $display_name = get_user_meta( $user->ID, "display_name", true );
     22        $display_name = $user->display_name;
    2323        if ( ! $display_name ) {
    2424            $display_name = "";
  • appful-app/trunk/readme.txt

    r2920603 r2927004  
    66Tested up to: 6.2
    77Requires PHP: 7.4
    8 Stable tag: 3.1.3
     8Stable tag: 3.1.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2020- 24/7 personal support
    2121- Free Test App before buying
     22
     23
     24**If you are interested in using appful or need support, please contact us via email at [mail[ätt]appful.io](mailto:mail@appful.io) or just visit us at [appful.io](https://home.appful.io "Appful")**
    2225
    2326
Note: See TracChangeset for help on using the changeset viewer.