Plugin Directory

Changeset 2574985


Ignore:
Timestamp:
07/29/2021 09:36:29 PM (5 years ago)
Author:
nellalink
Message:

1.1.15

  • Investment Packages now works async
  • Email notification to users on CREDIT and DEBIT is now back
  • Tested for Wordpress 5.8 newest version
Location:
rimplenet/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • rimplenet/trunk/README.txt

    r2503655 r2574985  
    44Tags: wallet-creator, ewallet, e-wallet, ebanking, e-banking, mlm, matrix, matrix-tree, investments, investment-plugin, fintech, loan-plugin-maker, woocommerce-payment-processor-maker
    55Requires at least: 3.0.1
    6 Tested up to: 5.7
     6Tested up to: 5.8
    77Stable tag: 1.1.14
    88Requires PHP: 5.6
     
    8181== Changelog ==
    8282
     83= 1.1.15 =
     84* Investment Packages now works async
     85* Email notification to users on CREDIT and DEBIT is now back
     86* Tested for Wordpress 5.8 newest version
    8387= 1.1.14 =
    8488* Memory Leak Issue fixed
     
    114118
    115119== Upgrade Notice ==
     120= 1.1.15 =
     121* Investment Packages now works async
     122* Email notification to users on CREDIT and DEBIT is now back
     123* Tested for Wordpress 5.8 newest version
    116124= 1.1.14 =
    117125* Memory Leak Issue fixed
  • rimplenet/trunk/includes/class-emails.php

    r2463950 r2574985  
    120120            $headers  = "MIME-Version: 1.0" . "\r\n";
    121121            $headers .= "Content-type: text/html; charset=".get_bloginfo('charset')."" . "\r\n";
    122             $headers .= "From: Transaction Notifier ~ $blogname <noreply@".$domain_name.">" . "\r\n";
     122            //$headers .= "From: Transaction Notifier ~ $blogname <noreply@".$domain_name.">" . "\r\n";//we now use default because of hosting issues
    123123 
    124124             
  • rimplenet/trunk/includes/class-package-plans-and-rules.php

    r2503655 r2574985  
    299299      array(
    300300      'post_type' => 'rimplenettransaction',
    301       'numberposts'   => -1, // get all posts.
     301      'posts_per_page'   => 50, // get 50 transaction.
     302      'order' => 'ASC',
    302303      'post_status'    => 'publish',
     304      'meta_query' => array(
     305         'relation' => 'AND',
     306            array(
     307                'key'     => 'linked_package',
     308                'value'   => 0,
     309                'compare' => '>',
     310            ),
     311            array(
     312                'key'     => 'package_investment_rule_executed',
     313                'value'   => 'yes',
     314                'compare' => '!=',
     315            ),
     316        ),
    303317      'tax_query'     => array(
    304         array(
    305           'taxonomy' => 'rimplenettransaction_type',
    306           'field'    => 'name',
    307           'terms'    => 'INVESTMENTS',
    308         ),
     318         'relation' => 'AND',
     319             array(
     320               'taxonomy' => 'rimplenettransaction_type',
     321               'field'    => 'name',
     322               'terms'    => 'INVESTMENTS',
     323               'operator' => 'IN'
     324             ),
     325             array(
     326               'taxonomy' => 'rimplenettransaction_type',
     327               'field'    => 'name',
     328               'terms'    => 'DEBIT',
     329               'operator' => 'IN'
     330              ),
    309331        ),
    310332      'fields'        => 'ids', // Only get post IDs
  • rimplenet/trunk/includes/class-rimplenet-mlm.php

    r2503129 r2574985  
    137137         * core plugin.
    138138         */
    139         //require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-emails.php';
     139        require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-emails.php';
    140140       
    141141        /**
  • rimplenet/trunk/rimplenet.php

    r2503655 r2574985  
    1616 * Plugin Name:       Rimplenet
    1717 * Plugin URI:        https://rimplenet.com
    18  * Description:       Rimplenet E-Banking | E-Wallets  | Investments Plugin | MLM | Matrix Tree | Referral Manager | FinTech
    19  * Version:           1.1.14
     18 * Description:       Rimplenet FinTech | E-Banking | E-Wallets  | Investments Plugin | MLM | Matrix Tree | Referral Manager
     19 * Version:           1.1.15
    2020 * Author:            Nellalink
    2121 * Author URI:        https://rimplenet.com
Note: See TracChangeset for help on using the changeset viewer.