Changeset 2560163
- Timestamp:
- 07/07/2021 05:12:04 PM (5 years ago)
- Location:
- woomotiv
- Files:
-
- 4 edited
- 1 copied
-
tags/3.3.0 (copied) (copied from woomotiv/trunk)
-
trunk/index.php (modified) (2 diffs)
-
trunk/lib/class-popup-review.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/views/tabs/style.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
woomotiv/trunk/index.php
r2538396 r2560163 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.3. 06 * Version: 3.3.1 7 7 * Author: Sabri Taieb 8 8 * Author Uri: https://delabon.com … … 18 18 19 19 # Defined 20 define( 'WOOMOTIV_VERSION', '3.3. 0' );20 define( 'WOOMOTIV_VERSION', '3.3.1' ); 21 21 define( 'WOOMOTIV_URL', plugins_url( '', __FILE__ ) ); 22 22 define( 'WOOMOTIV_DIR', __DIR__ ); -
woomotiv/trunk/lib/class-popup-review.php
r2064950 r2560163 31 31 'id' => $this->review->user_id, 32 32 'username' => $this->review->username, 33 'first_name' => $this->review->user_first_name,34 'last_name' => $this->review->user_first_name,33 'first_name' => isset($this->review->user_first_name) ? $this->review->user_first_name : '', 34 'last_name' => isset($this->review->user_first_name) ? $this->review->user_first_name : '', 35 35 'avatar' => get_avatar_url( $this->review->user_id, array( 'size' => 150 ) ), 36 36 'avatar_img' => mod_avatar( $this->review->user_id, $this->data['product']['thumbnail_src'][0], $this->review->username ), -
woomotiv/trunk/readme.txt
r2538396 r2560163 3 3 Requires at least: 4.6 4 4 Tested up to: 5.7.0 5 Stable tag: 3.3. 05 Stable tag: 3.3.1 6 6 Requires PHP: 5.6 7 7 Tags: woocommerce notification, woocommerce sales notification, woocommerce sales popup, marketing, boost sales, boost conversion … … 101 101 == Changelog == 102 102 103 = 3.3.1 = 104 105 * Fixed PHP warnings 106 103 107 = 3.3.0 = 104 108 -
woomotiv/trunk/views/tabs/style.php
r2264300 r2560163 72 72 'items' => array( 73 73 'fade' => __('Fade','woomotiv'), 74 'pop' => __('Pop','woomotiv'),75 'wobble-skew' => __('Wobble Skew','woomotiv'),76 'buzz-out' => __('Buzz Out','woomotiv'),74 // 'pop' => __('Pop','woomotiv'), 75 // 'wobble-skew' => __('Wobble Skew','woomotiv'), 76 // 'buzz-out' => __('Buzz Out','woomotiv'), 77 77 'slideup' => __('Slide Up','woomotiv'), 78 78 'slidedown' => __('Slide Down','woomotiv'),
Note: See TracChangeset
for help on using the changeset viewer.