Changeset 3348688
- Timestamp:
- 08/22/2025 01:49:02 PM (8 months ago)
- Location:
- reportana/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
reportana.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
reportana/trunk/readme.txt
r3167191 r3348688 5 5 Tested up to: 6.6 6 6 Requires PHP: 7.2 7 Stable tag: 1. 37 Stable tag: 1.4 8 8 License: GPLv2 or later 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 71 71 == Changelog == 72 72 73 = 1.4 = 74 * Improved quality of abandoned cart images. 75 73 76 = 1.3 = 74 77 * Added new features and improvements. -
reportana/trunk/reportana.php
r3167191 r3348688 3 3 Plugin Name: Reportana 4 4 Description: Reportana is a complete solution for e-commerce and digital businesses that want to increase their sales, optimize communication with their customers and manage their operations efficiently. With our platform, you can automate messages via email, WhatsApp, SMS and phone calls, as well as offer automatic support by creating your own chatbot and monitor the main metrics of your business. 5 Version: 1. 35 Version: 1.4 6 6 Author: Reportana 7 7 Author URI: https://reportana.com/ … … 470 470 $product = $cart_item['data']; 471 471 472 // Get the product image URL ( thumbnail)473 $ thumbnail_url = wp_get_attachment_image_url( $product->get_image_id(), 'thumbnail' );472 // Get the product image URL (large) 473 $image_url = wp_get_attachment_image_url( $product->get_image_id(), 'large' ); 474 474 475 475 // Get the variant title (if applicable) … … 493 493 'price' => $product->get_price(), 494 494 'path' => $product_url, 495 'image_url' => $ thumbnail_url,495 'image_url' => $image_url, 496 496 'tracking_number' => '', 497 497 );
Note: See TracChangeset
for help on using the changeset viewer.