Changeset 3273024
- Timestamp:
- 04/15/2025 07:05:05 AM (11 months ago)
- Location:
- recently-purchased-products-for-woo
- Files:
-
- 36 added
- 5 edited
-
tags/1.1.6 (added)
-
tags/1.1.6/includes (added)
-
tags/1.1.6/includes/assets (added)
-
tags/1.1.6/includes/assets/css (added)
-
tags/1.1.6/includes/assets/css/ajax-loader.gif (added)
-
tags/1.1.6/includes/assets/css/fonts (added)
-
tags/1.1.6/includes/assets/css/fonts/slick.eot (added)
-
tags/1.1.6/includes/assets/css/fonts/slick.svg (added)
-
tags/1.1.6/includes/assets/css/fonts/slick.ttf (added)
-
tags/1.1.6/includes/assets/css/fonts/slick.woff (added)
-
tags/1.1.6/includes/assets/css/index.php (added)
-
tags/1.1.6/includes/assets/css/rppw-style.css (added)
-
tags/1.1.6/includes/assets/css/slick-theme.css (added)
-
tags/1.1.6/includes/assets/css/slick.css (added)
-
tags/1.1.6/includes/assets/image (added)
-
tags/1.1.6/includes/assets/image/no-image.png (added)
-
tags/1.1.6/includes/assets/index.php (added)
-
tags/1.1.6/includes/assets/js (added)
-
tags/1.1.6/includes/assets/js/rppw-admin.js (added)
-
tags/1.1.6/includes/assets/js/rppw-public.js (added)
-
tags/1.1.6/includes/assets/js/slick.min.js (added)
-
tags/1.1.6/includes/class-rppw-admin.php (added)
-
tags/1.1.6/includes/class-rppw-public.php (added)
-
tags/1.1.6/includes/class-rppw-scripts.php (added)
-
tags/1.1.6/includes/index.php (added)
-
tags/1.1.6/includes/widget (added)
-
tags/1.1.6/includes/widget/class-rppw-elementor-widget.php (added)
-
tags/1.1.6/includes/widget/class-rppw-widget.php (added)
-
tags/1.1.6/includes/widget/index.php (added)
-
tags/1.1.6/index.php (added)
-
tags/1.1.6/languages (added)
-
tags/1.1.6/languages/index.php (added)
-
tags/1.1.6/languages/recently-purchased-products-for-woo.pot (added)
-
tags/1.1.6/license.txt (added)
-
tags/1.1.6/readme.txt (added)
-
tags/1.1.6/recently-purchased-products-for-woo.php (added)
-
trunk/includes/class-rppw-public.php (modified) (2 diffs)
-
trunk/includes/widget/class-rppw-elementor-widget.php (modified) (1 diff)
-
trunk/includes/widget/class-rppw-widget.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/recently-purchased-products-for-woo.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
recently-purchased-products-for-woo/trunk/includes/class-rppw-public.php
r3250921 r3273024 156 156 $col_class = ' grid_cols_' . $columns; 157 157 } 158 158 159 $out .= '<ul class="recently_purchased_products_for_woo ' . esc_attr( $view ) . esc_attr( $col_class ) . '">'; 159 160 if (!empty($orders_list) && is_array($orders_list)) { 160 161 $product_cat_name = ''; 161 162 foreach ($orders_list as $k => $order) { 162 setup_postdata($order); 163 //setup_postdata($order); 164 setup_postdata($order->get_id()); 163 165 $wc_order = wc_get_order($order->get_id()); 164 166 //$wc_date = date(get_option('date_format'), strtotime($wc_order->get_date_created())); 165 167 $wc_date = wp_date(get_option('date_format'), strtotime($wc_order->get_date_created())); 168 166 169 $customer_fname = $wc_order->get_billing_first_name(); 167 170 $customer_lname = $wc_order->get_billing_last_name(); … … 342 345 $product_cat_name = ''; 343 346 foreach ($orders_list as $k => $order) { 344 setup_postdata($order); 347 //setup_postdata($order); 348 setup_postdata($order->get_id()); 345 349 $wc_order = wc_get_order($order->get_id()); 346 350 //$wc_date = date(get_option('date_format'), strtotime($wc_order->get_date_created())); -
recently-purchased-products-for-woo/trunk/includes/widget/class-rppw-elementor-widget.php
r3250921 r3273024 433 433 foreach ($orders_list as $k => $order) { 434 434 435 setup_postdata($order);436 435 //setup_postdata($order); 436 setup_postdata($order->get_id()); 437 437 $wc_order = wc_get_order($order->ID); 438 438 //$wc_date = date(get_option('date_format'), strtotime($wc_order->get_date_created())); -
recently-purchased-products-for-woo/trunk/includes/widget/class-rppw-widget.php
r3250921 r3273024 265 265 if (!empty($orders_list) && is_array($orders_list)) { 266 266 foreach ($orders_list as $k => $order) { 267 setup_postdata($order); 267 //setup_postdata($order); 268 setup_postdata($order->get_id()); 268 269 $wc_order = wc_get_order($order->get_id()); 269 270 //$wc_date = date(get_option('date_format'), strtotime($wc_order->get_date_created())); -
recently-purchased-products-for-woo/trunk/readme.txt
r3250921 r3273024 9 9 Requires at least: 5.8 10 10 Requires PHP: 7.4 11 Tested up to: 6. 7.212 Stable tag: 1.1. 511 Tested up to: 6.8 12 Stable tag: 1.1.6 13 13 License: GPLv2 or later 14 14 License URI: https://www.gnu.org/licenses/gpl-2.0.html 15 Version: 1.1. 515 Version: 1.1.6 16 16 17 17 Display Recently Purchased Products For Woocommerce using Widget and Shortcode … … 153 153 == Changelog == 154 154 155 = 1.1.6 (Apr 15, 2025) = 156 * Fixes depreciation errors with WordPress version 6.8 and PHP 8.2 157 155 158 = 1.1.5 (Mar 05, 2025) = 156 159 * Implementing escaping and sanitization for Javascripts -
recently-purchased-products-for-woo/trunk/recently-purchased-products-for-woo.php
r3250921 r3273024 4 4 * Plugin URI: https://wordpress.org/plugins/recently-purchased-products-for-woo 5 5 * Description: Display Recently Purchased Products For Woocommerce using Widget and Shortcode 6 * Version: 1.1. 56 * Version: 1.1.6 7 7 * Author: World Web Technology 8 8 * Author URI: http://www.worldwebtechnology.com … … 12 12 * Domain Path: /languages 13 13 * 14 * Tested up to: 6. 7.214 * Tested up to: 6.8 15 15 */ 16 16 … … 33 33 */ 34 34 if( !defined( 'RPPW_VERSION' ) ) { 35 define( 'RPPW_VERSION', '1.1. 5' ); // Plugin Version35 define( 'RPPW_VERSION', '1.1.6' ); // Plugin Version 36 36 } 37 37
Note: See TracChangeset
for help on using the changeset viewer.