Plugin Directory

Changeset 3386586


Ignore:
Timestamp:
10/29/2025 05:06:23 PM (5 months ago)
Author:
AmauriC
Message:

v11.73

Location:
wpappninja/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • wpappninja/trunk/inc/admin/upgrader.php

    r2772204 r3386586  
    130130            'customcss_website' => '',
    131131            'all_link_browser' => '0',
    132             'wpappninja_main_theme' => 'WPMobile.App',
     132            'wpappninja_main_theme' => 'No theme',
    133133            'speed_notheme' => '0',
    134134            'nospeed_notheme' => '0',
  • wpappninja/trunk/inc/functions/appify.php

    r3207040 r3386586  
    2929
    3030/* LISTS OPTIONS */
    31 add_action( 'pre_get_posts', 'wpmobileapp_pre_get_posts' );
     31//add_action( 'pre_get_posts', 'wpmobileapp_pre_get_posts' );
    3232function wpmobileapp_pre_get_posts($query) {
    3333
     
    5353
    5454/* WOOCOMMERCE */
    55 add_filter('woocommerce_get_catalog_ordering_args', 'wpmobileapp_woocommerce_catalog_orderby');
     55//add_filter('woocommerce_get_catalog_ordering_args', 'wpmobileapp_woocommerce_catalog_orderby');
    5656function wpmobileapp_woocommerce_catalog_orderby( $args ) {
    5757
  • wpappninja/trunk/inc/functions/shortcodes.php

    r3374556 r3386586  
    230230function wpmobile_username_password( $user, $username, $password ) {
    231231
    232     if (is_wpappninja()) {
     232    if (is_wpappninja() && $_GET['reason'] != "both_empty") {
    233233
    234234        $redirect_to = wpappninja_cache_friendly(wpmobile_weglot(wpappninja_get_home()));
     
    286286                $redirect_to = wpappninja_translate(wpappninja_get_home());
    287287            }
    288            
     288
     289            if (!isset($_GET['reason']) OR $_GET['reason'] != $error_type) {
    289290            wp_redirect($redirect_to . '?wpapp_shortcode=wpapp_login&login=fail&reason=' . $error_type );
    290         exit;
     291        exit;}
    291292    }
    292293        if (isset($user->roles) && is_array($user->roles)) {
  • wpappninja/trunk/readme.txt

    r3374556 r3386586  
    1212
    1313== Changelog ==
     14
     15= 11.73 =
     16* Change the default theme
     17* Fix a redirect issue after login
     18* Fix a sort issue on some apps
    1419
    1520= 11.72 =
  • wpappninja/trunk/themes/wpappninja-full/functions.php

    r3010190 r3386586  
    196196
    197197/** WOOCOMMERCE **/
    198 add_filter('woocommerce_get_catalog_ordering_args', 'wpappninja_woocommerce_catalog_orderby');
     198//add_filter('woocommerce_get_catalog_ordering_args', 'wpappninja_woocommerce_catalog_orderby');
    199199function wpappninja_woocommerce_catalog_orderby( $args ) {
    200200    $args['orderby'] = get_wpappninja_option('orderby_list', 'post_date');
  • wpappninja/trunk/wpappninja.php

    r3374556 r3386586  
    44Plugin URI: https://wpmobile.app/
    55Description: Android and iOS mobile application. Easy setup, free test.
    6 Version: 11.72
     6Version: 11.73
    77Author: Amauri
    88Author URI: https://wpmobile.app/
     
    1515
    1616// common
    17 define( 'WPAPPNINJA_VERSION'            , '11.72' );
     17define( 'WPAPPNINJA_VERSION'            , '11.73' );
    1818define( 'WPAPPNINJA_VERSION_APP'        , '100' );
    1919
Note: See TracChangeset for help on using the changeset viewer.