Plugin Directory

Changeset 3037983


Ignore:
Timestamp:
02/19/2024 01:55:00 PM (2 years ago)
Author:
chosify
Message:

Update to version 1.0.10 from GitHub

Location:
chosify
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • chosify/tags/1.0.10/chosify.php

    r3037928 r3037983  
    55 * Requires PHP: 8.0
    66 * Requires at least: 5.8
    7  * Version: 1.0.9
     7 * Version: 1.0.10
    88 * License: GPLv2 or later
    99 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • chosify/tags/1.0.10/readme.txt

    r3037928 r3037983  
    66Requires at least: 5.8
    77Tested up to: 6.3.1
    8 Stable Tag: 1.0.9
     8Stable Tag: 1.0.10
    99
    1010Includes the Chosify integration script (https://integration.chosify.com/assets/index.js) to Wordpress and adds a shortcode to integrate the Chosify Widget.
  • chosify/tags/1.0.10/src/WooCommerce.php

    r3037928 r3037983  
    2727                        'id': '<?php echo $item['product_id']; ?>',
    2828                        'name': '<?php echo $item['name']; ?>',
    29                         'price': '<?php echo number_format($order->get_line_subtotal($item), 2, ".", ""); ?>',
     29                        'price': '<?php echo number_format($product->get_price(), 2, ".", ""); ?>',
    3030                        'brand': '',
    3131                        'category': '<?php echo strip_tags($product->get_categories(', ', '', '')); ?>',
  • chosify/trunk/chosify.php

    r3037928 r3037983  
    55 * Requires PHP: 8.0
    66 * Requires at least: 5.8
    7  * Version: 1.0.9
     7 * Version: 1.0.10
    88 * License: GPLv2 or later
    99 * License URI: https://www.gnu.org/licenses/gpl-2.0.html
  • chosify/trunk/readme.txt

    r3037928 r3037983  
    66Requires at least: 5.8
    77Tested up to: 6.3.1
    8 Stable Tag: 1.0.9
     8Stable Tag: 1.0.10
    99
    1010Includes the Chosify integration script (https://integration.chosify.com/assets/index.js) to Wordpress and adds a shortcode to integrate the Chosify Widget.
  • chosify/trunk/src/WooCommerce.php

    r3037928 r3037983  
    2727                        'id': '<?php echo $item['product_id']; ?>',
    2828                        'name': '<?php echo $item['name']; ?>',
    29                         'price': '<?php echo number_format($order->get_line_subtotal($item), 2, ".", ""); ?>',
     29                        'price': '<?php echo number_format($product->get_price(), 2, ".", ""); ?>',
    3030                        'brand': '',
    3131                        'category': '<?php echo strip_tags($product->get_categories(', ', '', '')); ?>',
Note: See TracChangeset for help on using the changeset viewer.