Changeset 3296683
- Timestamp:
- 05/19/2025 04:54:33 PM (10 months ago)
- Location:
- product-share
- Files:
-
- 56 added
- 7 edited
-
tags/1.2.18 (added)
-
tags/1.2.18/admin (added)
-
tags/1.2.18/admin/css (added)
-
tags/1.2.18/admin/css/backend-rtl.css (added)
-
tags/1.2.18/admin/css/backend.css (added)
-
tags/1.2.18/admin/css/backend.min.css (added)
-
tags/1.2.18/admin/js (added)
-
tags/1.2.18/admin/js/backend.js (added)
-
tags/1.2.18/admin/js/backend.min.js (added)
-
tags/1.2.18/fonts (added)
-
tags/1.2.18/fonts/fontawesome (added)
-
tags/1.2.18/fonts/fontawesome/css (added)
-
tags/1.2.18/fonts/fontawesome/css/all.css (added)
-
tags/1.2.18/fonts/fontawesome/css/all.min.css (added)
-
tags/1.2.18/fonts/fontawesome/webfonts (added)
-
tags/1.2.18/fonts/fontawesome/webfonts/fa-brands-400.ttf (added)
-
tags/1.2.18/fonts/fontawesome/webfonts/fa-brands-400.woff2 (added)
-
tags/1.2.18/fonts/fontawesome/webfonts/fa-regular-400.ttf (added)
-
tags/1.2.18/fonts/fontawesome/webfonts/fa-regular-400.woff2 (added)
-
tags/1.2.18/fonts/fontawesome/webfonts/fa-solid-900.ttf (added)
-
tags/1.2.18/fonts/fontawesome/webfonts/fa-solid-900.woff2 (added)
-
tags/1.2.18/fonts/fontawesome/webfonts/fa-v4compatibility.ttf (added)
-
tags/1.2.18/fonts/fontawesome/webfonts/fa-v4compatibility.woff2 (added)
-
tags/1.2.18/includes (added)
-
tags/1.2.18/includes/class-product-share-admin-settings.php (added)
-
tags/1.2.18/includes/class-product-share-front.php (added)
-
tags/1.2.18/includes/class-product-share-icons.php (added)
-
tags/1.2.18/includes/class-product-share.php (added)
-
tags/1.2.18/includes/compatibility.php (added)
-
tags/1.2.18/includes/layout.php (added)
-
tags/1.2.18/includes/setting-tab (added)
-
tags/1.2.18/includes/setting-tab/advanced.php (added)
-
tags/1.2.18/includes/setting-tab/general.php (added)
-
tags/1.2.18/includes/wpxtension (added)
-
tags/1.2.18/includes/wpxtension/wpx-menu.php (added)
-
tags/1.2.18/includes/wpxtension/wpx-setting-fields.php (added)
-
tags/1.2.18/includes/wpxtension/wpx-sidebar.php (added)
-
tags/1.2.18/includes/wpxtension/wpxtension-admin-rtl.css (added)
-
tags/1.2.18/includes/wpxtension/wpxtension-admin.css (added)
-
tags/1.2.18/includes/wpxtension/wpxtension-admin.min-rtl.css (added)
-
tags/1.2.18/includes/wpxtension/wpxtension-admin.min.css (added)
-
tags/1.2.18/languages (added)
-
tags/1.2.18/languages/product-share.pot (added)
-
tags/1.2.18/package.json (added)
-
tags/1.2.18/product-share.php (added)
-
tags/1.2.18/public (added)
-
tags/1.2.18/public/css (added)
-
tags/1.2.18/public/css/public-rtl.css (added)
-
tags/1.2.18/public/css/public.css (added)
-
tags/1.2.18/public/css/public.min-rtl.css (added)
-
tags/1.2.18/public/css/public.min.css (added)
-
tags/1.2.18/public/js (added)
-
tags/1.2.18/public/js/public.js (added)
-
tags/1.2.18/public/js/public.min.js (added)
-
tags/1.2.18/readme.txt (added)
-
tags/1.2.18/uninstall.php (added)
-
trunk/includes/class-product-share.php (modified) (1 diff)
-
trunk/includes/setting-tab/general.php (modified) (1 diff)
-
trunk/includes/wpxtension/wpx-setting-fields.php (modified) (1 diff)
-
trunk/languages/product-share.pot (modified) (2 diffs)
-
trunk/package.json (modified) (1 diff)
-
trunk/product-share.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
product-share/trunk/includes/class-product-share.php
r3279203 r3296683 12 12 protected $_plugin = 'product-share'; 13 13 14 protected $_version = '1.2.1 7';14 protected $_version = '1.2.18'; 15 15 16 16 protected static $_instance = null; -
product-share/trunk/includes/setting-tab/general.php
r3279203 r3296683 321 321 322 322 // Product Wrapper Class 323 WPXtension_Setting_Fields::text (323 WPXtension_Setting_Fields::textarea( 324 324 $options = array( 325 325 'tr_class' => 'new', -
product-share/trunk/includes/wpxtension/wpx-setting-fields.php
r3212696 r3296683 305 305 } 306 306 307 public static function textarea($options = []){ 308 $pro_exists = isset( $options['pro_exists'] ) ? $options['pro_exists'] : false; 309 $license = isset( $options['license'] ) ? $options['license'] : false; 310 ?> 311 <tr class="<?php echo esc_attr($options['tr_class']); ?>" valign="top" data-new-tag="<?php echo ( isset( $options['tag'] ) ) ? esc_attr($options['tag']) : ''; ?>"> 312 313 <td class="row-title" scope="row"> 314 <label for="tablecell"> 315 <?php 316 $label = ( $options['need_pro'] === true ) ? self::pro_not_exist($pro_exists) . esc_attr($options['label']) : esc_attr($options['label']); 317 echo wp_kses_post( $label ); 318 ?> 319 </label> 320 <?php $options['need_pro'] === true ? self::pro_link($pro_exists) : ''; ?> 321 </td> 322 <td class="<?php echo esc_attr( self::disable_for_pro($options['need_pro'],$pro_exists) ); ?>"> 323 <label> 324 <textarea class='regular-text<?php echo ( isset( $options['ele_class'] ) ) ? esc_attr($options['ele_class']) : ''; ?>' type='text' name='<?php echo esc_attr($options['name']); ?>' placeholder='<?php echo esc_attr($options['placeholder']); ?>'><?php echo esc_attr( $options['value'] ); ?></textarea> 325 </label> 326 327 <?php if( isset( $options['note'] ) && $options['note'] !== '' ): ?> 328 <p style="font-style: italic; color: red;"><?php echo wp_kses_post( $options['note'] ); ?></p> 329 <?php endif; ?> 330 331 <?php if( isset( $options['note_info'] ) && $options['note_info'] !== '' ): ?> 332 <p style="font-style: italic; color: #222;"><?php echo wp_kses_post( $options['note_info'] ); ?></p> 333 <?php endif; ?> 334 </td> 335 336 </tr> 337 <?php 338 } 339 307 340 } 308 341 -
product-share/trunk/languages/product-share.pot
r3279203 r3296683 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: product-share 1.2.1 7\n"5 "Project-Id-Version: product-share 1.2.18\n" 6 6 "Report-Msgid-Bugs-To: WPXtension <EMAIL>\n" 7 7 "MIME-Version: 1.0\n" … … 9 9 "Content-Type: text/plain; charset=iso-8859-1\n" 10 10 "Plural-Forms: nplurals=2; plural=(n!=1);\n" 11 "POT-Creation-Date: 2025-0 4-22T06:39:01.901Z\n"11 "POT-Creation-Date: 2025-05-19T09:14:04.041Z\n" 12 12 "PO-Revision-Date: 2025-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: WPXtension <EMAIL>\n" -
product-share/trunk/package.json
r3279203 r3296683 1 1 { 2 2 "name": "product-share", 3 "version": "1.2.1 7",3 "version": "1.2.18", 4 4 "description": "Display social icons on the different spots of product pages to share your WooCommerce product on social media sites.", 5 5 "main": "index.js", -
product-share/trunk/product-share.php
r3279203 r3296683 5 5 * Description: Display social icons on the different spots of product pages to share your WooCommerce product on social media. 6 6 * Author: WPXtension 7 * Version: 1.2.1 77 * Version: 1.2.18 8 8 * Domain Path: /languages 9 9 * Requires at least: 5.5 -
product-share/trunk/readme.txt
r3279203 r3296683 7 7 Tested up to: 6.8 8 8 WC tested up to: 9.8 9 Stable tag: 1.2.1 79 Stable tag: 1.2.18 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 160 160 == Changelog == 161 161 162 = 1.2.18 [19-05-2025] = 163 * Update: Settings Framework. 164 162 165 = 1.2.17 [22-04-2025] = 163 166 * Feature: More shapes for icon.
Note: See TracChangeset
for help on using the changeset viewer.