Changeset 2574985
- Timestamp:
- 07/29/2021 09:36:29 PM (5 years ago)
- Location:
- rimplenet/trunk
- Files:
-
- 5 edited
-
README.txt (modified) (3 diffs)
-
includes/class-emails.php (modified) (1 diff)
-
includes/class-package-plans-and-rules.php (modified) (1 diff)
-
includes/class-rimplenet-mlm.php (modified) (1 diff)
-
rimplenet.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rimplenet/trunk/README.txt
r2503655 r2574985 4 4 Tags: wallet-creator, ewallet, e-wallet, ebanking, e-banking, mlm, matrix, matrix-tree, investments, investment-plugin, fintech, loan-plugin-maker, woocommerce-payment-processor-maker 5 5 Requires at least: 3.0.1 6 Tested up to: 5. 76 Tested up to: 5.8 7 7 Stable tag: 1.1.14 8 8 Requires PHP: 5.6 … … 81 81 == Changelog == 82 82 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 83 87 = 1.1.14 = 84 88 * Memory Leak Issue fixed … … 114 118 115 119 == 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 116 124 = 1.1.14 = 117 125 * Memory Leak Issue fixed -
rimplenet/trunk/includes/class-emails.php
r2463950 r2574985 120 120 $headers = "MIME-Version: 1.0" . "\r\n"; 121 121 $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 123 123 124 124 -
rimplenet/trunk/includes/class-package-plans-and-rules.php
r2503655 r2574985 299 299 array( 300 300 'post_type' => 'rimplenettransaction', 301 'numberposts' => -1, // get all posts. 301 'posts_per_page' => 50, // get 50 transaction. 302 'order' => 'ASC', 302 303 '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 ), 303 317 '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 ), 309 331 ), 310 332 'fields' => 'ids', // Only get post IDs -
rimplenet/trunk/includes/class-rimplenet-mlm.php
r2503129 r2574985 137 137 * core plugin. 138 138 */ 139 //require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-emails.php';139 require_once plugin_dir_path( dirname( __FILE__ ) ) . 'includes/class-emails.php'; 140 140 141 141 /** -
rimplenet/trunk/rimplenet.php
r2503655 r2574985 16 16 * Plugin Name: Rimplenet 17 17 * Plugin URI: https://rimplenet.com 18 * Description: Rimplenet E-Banking | E-Wallets | Investments Plugin | MLM | Matrix Tree | Referral Manager | FinTech19 * Version: 1.1.1 418 * Description: Rimplenet FinTech | E-Banking | E-Wallets | Investments Plugin | MLM | Matrix Tree | Referral Manager 19 * Version: 1.1.15 20 20 * Author: Nellalink 21 21 * Author URI: https://rimplenet.com
Note: See TracChangeset
for help on using the changeset viewer.