Changeset 3386586
- Timestamp:
- 10/29/2025 05:06:23 PM (5 months ago)
- Location:
- wpappninja/trunk
- Files:
-
- 6 edited
-
inc/admin/upgrader.php (modified) (1 diff)
-
inc/functions/appify.php (modified) (2 diffs)
-
inc/functions/shortcodes.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
-
themes/wpappninja-full/functions.php (modified) (1 diff)
-
wpappninja.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpappninja/trunk/inc/admin/upgrader.php
r2772204 r3386586 130 130 'customcss_website' => '', 131 131 'all_link_browser' => '0', 132 'wpappninja_main_theme' => ' WPMobile.App',132 'wpappninja_main_theme' => 'No theme', 133 133 'speed_notheme' => '0', 134 134 'nospeed_notheme' => '0', -
wpappninja/trunk/inc/functions/appify.php
r3207040 r3386586 29 29 30 30 /* LISTS OPTIONS */ 31 add_action( 'pre_get_posts', 'wpmobileapp_pre_get_posts' );31 //add_action( 'pre_get_posts', 'wpmobileapp_pre_get_posts' ); 32 32 function wpmobileapp_pre_get_posts($query) { 33 33 … … 53 53 54 54 /* 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'); 56 56 function wpmobileapp_woocommerce_catalog_orderby( $args ) { 57 57 -
wpappninja/trunk/inc/functions/shortcodes.php
r3374556 r3386586 230 230 function wpmobile_username_password( $user, $username, $password ) { 231 231 232 if (is_wpappninja() ) {232 if (is_wpappninja() && $_GET['reason'] != "both_empty") { 233 233 234 234 $redirect_to = wpappninja_cache_friendly(wpmobile_weglot(wpappninja_get_home())); … … 286 286 $redirect_to = wpappninja_translate(wpappninja_get_home()); 287 287 } 288 288 289 if (!isset($_GET['reason']) OR $_GET['reason'] != $error_type) { 289 290 wp_redirect($redirect_to . '?wpapp_shortcode=wpapp_login&login=fail&reason=' . $error_type ); 290 exit; 291 exit;} 291 292 } 292 293 if (isset($user->roles) && is_array($user->roles)) { -
wpappninja/trunk/readme.txt
r3374556 r3386586 12 12 13 13 == 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 14 19 15 20 = 11.72 = -
wpappninja/trunk/themes/wpappninja-full/functions.php
r3010190 r3386586 196 196 197 197 /** 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'); 199 199 function wpappninja_woocommerce_catalog_orderby( $args ) { 200 200 $args['orderby'] = get_wpappninja_option('orderby_list', 'post_date'); -
wpappninja/trunk/wpappninja.php
r3374556 r3386586 4 4 Plugin URI: https://wpmobile.app/ 5 5 Description: Android and iOS mobile application. Easy setup, free test. 6 Version: 11.7 26 Version: 11.73 7 7 Author: Amauri 8 8 Author URI: https://wpmobile.app/ … … 15 15 16 16 // common 17 define( 'WPAPPNINJA_VERSION' , '11.7 2' );17 define( 'WPAPPNINJA_VERSION' , '11.73' ); 18 18 define( 'WPAPPNINJA_VERSION_APP' , '100' ); 19 19
Note: See TracChangeset
for help on using the changeset viewer.