X7ROOT File Manager
Current Path:
/home/notabjze/digitalcontentmentors.com/wp-content/plugins/trustpilot-reviews
home
/
notabjze
/
digitalcontentmentors.com
/
wp-content
/
plugins
/
trustpilot-reviews
/
ðŸ“
..
📄
config.php
(1.86 KB)
📄
helper.php
(6.74 KB)
📄
legacy.php
(682 B)
📄
logo.png
(6.14 KB)
📄
readme.txt
(5.4 KB)
ðŸ“
review
📄
uninstall.php
(576 B)
📄
wc_trustpilot.php
(3.03 KB)
Editing: legacy.php
<?php function trustpilot_legacy_get_all_wc_orders( $args ) { global $wpdb; $orders = array(); $limit = $args['limit']; $offset = ( $args['limit'] * $args['paged'] ) - $args['limit']; $date_created = $args['date_created']; $customer_orders = $wpdb->get_results( $wpdb->prepare("SELECT * FROM $wpdb->posts WHERE post_type = 'shop_order' AND post_status in ('wc-completed', 'completed') AND post_date %s ORDER BY id LIMIT %d, %d", array($date_created, $offset, $limit) ) ); foreach ( $customer_orders as $customer_order ) { array_push( $orders, wc_get_order( $customer_order ) ); } return $orders; }
Upload File
Create Folder