Changeset 3066351
- Timestamp:
- 04/07/2024 03:05:27 PM (2 years ago)
- Location:
- woomotiv
- Files:
-
- 3 edited
- 7 copied
-
tags/3.5.0 (copied) (copied from woomotiv/trunk)
-
tags/3.5.0/index.php (copied) (copied from woomotiv/trunk/index.php)
-
tags/3.5.0/js/admin-review-popup.js (copied) (copied from woomotiv/trunk/js/admin-review-popup.js)
-
tags/3.5.0/lib/class-backend.php (copied) (copied from woomotiv/trunk/lib/class-backend.php)
-
tags/3.5.0/lib/class-frontend.php (copied) (copied from woomotiv/trunk/lib/class-frontend.php)
-
tags/3.5.0/lib/functions.php (copied) (copied from woomotiv/trunk/lib/functions.php)
-
tags/3.5.0/readme.txt (copied) (copied from woomotiv/trunk/readme.txt)
-
trunk/index.php (modified) (2 diffs)
-
trunk/lib/functions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woomotiv/trunk/index.php
r3052675 r3066351 4 4 * Plugin Name: Woomotiv - Live Sales Notification for Woocommerce 5 5 * Description: Laverage social proof to increase trust, traffic and sales. 6 * Version: 3.5. 06 * Version: 3.5.1 7 7 * Author: Sabri Taieb 8 8 * Author Uri: https://delabon.com … … 20 20 21 21 # Defined 22 define( 'WOOMOTIV_VERSION', '3.5. 0' );22 define( 'WOOMOTIV_VERSION', '3.5.1' ); 23 23 define( 'WOOMOTIV_URL', plugins_url( '', __FILE__ ) ); 24 24 define( 'WOOMOTIV_DIR', __DIR__ ); -
woomotiv/trunk/lib/functions.php
r3052675 r3066351 639 639 if( $rating['user_id'] != 0 ){ 640 640 $usermeta = get_user_meta( $data->user_id ); 641 $rating['user_first_name'] = $usermeta['first_name'][0]; 642 $rating['user_last_name'] = $usermeta['last_name'][0]; 641 642 if (!empty($usermeta)) { 643 $rating['user_first_name'] = isset($usermeta['first_name'], $usermeta['first_name'][0]) ? $usermeta['first_name'][0] : ''; 644 $rating['user_last_name'] = isset($usermeta['last_name'], $usermeta['last_name'][0]) ? $usermeta['last_name'][0] : ''; 645 } 643 646 } 644 647 -
woomotiv/trunk/readme.txt
r3052675 r3066351 3 3 Requires at least: 4.6 4 4 Tested up to: 6.4.3 5 Stable tag: 3.5. 05 Stable tag: 3.5.1 6 6 Requires PHP: 5.6 7 7 Tags: woocommerce notification, woocommerce sales notification, woocommerce sales popup, marketing, boost sales, boost conversion … … 97 97 == Changelog == 98 98 99 = 3.5.1 = 100 101 * Fixes a PHP notice 102 99 103 = 3.5.0 = 100 104
Note: See TracChangeset
for help on using the changeset viewer.