Plugin Directory

Changeset 3231509


Ignore:
Timestamp:
01/29/2025 06:52:41 PM (14 months ago)
Author:
wpxteam
Message:

v1.2.15.1: * Fix: Pinterest social icon URL issue. Updated the Pinterest URL.

Location:
product-share
Files:
56 added
6 edited

Legend:

Unmodified
Added
Removed
  • product-share/trunk/includes/class-product-share-icons.php

    r3229711 r3231509  
    113113
    114114        $product_image = get_the_post_thumbnail_url( $product_id ) ? get_the_post_thumbnail_url( $product_id ) : wc_placeholder_img_src();
    115         $product_description = $product->get_description();
     115        $product_title = $product->get_title();
    116116
    117117
     
    120120            sprintf( '//pinterest.com/pin/create/button/?media=%1$s&description=%2$s&url=',
    121121                esc_url( $product_image ),
    122                 wp_kses_post( $product_description )
     122                wp_kses_post( $product_title )
    123123
    124124            ),
  • product-share/trunk/includes/class-product-share.php

    r3229711 r3231509  
    1212    protected $_plugin = 'product-share';
    1313   
    14     protected $_version = '1.2.15';
     14    protected $_version = '1.2.15.1';
    1515
    1616    protected static $_instance = null;
  • product-share/trunk/languages/product-share.pot

    r3229711 r3231509  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: product-share 1.2.15\n"
     5"Project-Id-Version: product-share 1.2.15.1\n"
    66"Report-Msgid-Bugs-To: WPXtension <EMAIL>\n"
    77"MIME-Version: 1.0\n"
     
    99"Content-Type: text/plain; charset=iso-8859-1\n"
    1010"Plural-Forms: nplurals=2; plural=(n!=1);\n"
    11 "POT-Creation-Date: 2025-01-27T06:41:20.400Z\n"
     11"POT-Creation-Date: 2025-01-30T06:41:20.400Z\n"
    1212"PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: WPXtension <EMAIL>\n"
  • product-share/trunk/package.json

    r3229711 r3231509  
    11{
    22  "name": "product-share",
    3   "version": "1.2.15",
     3  "version": "1.2.15.1",
    44  "description": "Display social icons on the different spots of product pages to share your WooCommerce product on social media sites.",
    55  "main": "index.js",
  • product-share/trunk/product-share.php

    r3229711 r3231509  
    55 * Description: Display social icons on the different spots of product pages to share your WooCommerce product on social media.
    66 * Author: WPXtension
    7  * Version: 1.2.15
     7 * Version: 1.2.15.1
    88 * Domain Path: /languages
    99 * Requires at least: 5.5
  • product-share/trunk/readme.txt

    r3229711 r3231509  
    77Tested up to: 6.7
    88WC tested up to: 9.6
    9 Stable tag: 1.2.15
     9Stable tag: 1.2.15.1
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    160160== Changelog ==
    161161
     162= 1.2.15.1 [30-01-2025] =
     163* Fix: Pinterest social icon URL issue. Updated the Pinterest URL.
     164
    162165= 1.2.15 [27-01-2025] =
    163166* Fix: Pinterest social icon URL issue. Updated to the new structure of the Pinterest URL.
Note: See TracChangeset for help on using the changeset viewer.