Plugin Directory

Changeset 3348688


Ignore:
Timestamp:
08/22/2025 01:49:02 PM (8 months ago)
Author:
reportana
Message:

Updating to version 1.4

Location:
reportana/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • reportana/trunk/readme.txt

    r3167191 r3348688  
    55Tested up to: 6.6
    66Requires PHP: 7.2
    7 Stable tag: 1.3
     7Stable tag: 1.4
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    7171== Changelog ==
    7272
     73= 1.4 =
     74* Improved quality of abandoned cart images.
     75
    7376= 1.3 =
    7477* Added new features and improvements.
  • reportana/trunk/reportana.php

    r3167191 r3348688  
    33Plugin Name: Reportana
    44Description: 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.3
     5Version: 1.4
    66Author: Reportana
    77Author URI: https://reportana.com/
     
    470470        $product = $cart_item['data'];
    471471
    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' );
    474474
    475475        // Get the variant title (if applicable)
     
    493493            'price'           => $product->get_price(),
    494494            'path'            => $product_url,
    495             'image_url'       => $thumbnail_url,
     495            'image_url'       => $image_url,
    496496            'tracking_number' => '',
    497497        );
Note: See TracChangeset for help on using the changeset viewer.