Plugin Directory

Changeset 2560163


Ignore:
Timestamp:
07/07/2021 05:12:04 PM (5 years ago)
Author:
delabon
Message:

Version 3.3.1

Location:
woomotiv
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • woomotiv/trunk/index.php

    r2538396 r2560163  
    44 * Plugin Name: Woomotiv - Live Sales Notification for Woocommerce
    55 * Description: Laverage social proof to increase trust, traffic and sales.
    6  * Version: 3.3.0
     6 * Version: 3.3.1
    77 * Author: Sabri Taieb
    88 * Author Uri: https://delabon.com
     
    1818
    1919# Defined
    20 define( 'WOOMOTIV_VERSION', '3.3.0' );
     20define( 'WOOMOTIV_VERSION', '3.3.1' );
    2121define( 'WOOMOTIV_URL', plugins_url( '', __FILE__ ) );
    2222define( 'WOOMOTIV_DIR', __DIR__ );
  • woomotiv/trunk/lib/class-popup-review.php

    r2064950 r2560163  
    3131            'id' => $this->review->user_id,
    3232            '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 : '',
    3535            'avatar' => get_avatar_url( $this->review->user_id, array( 'size' => 150 ) ),
    3636            'avatar_img' => mod_avatar( $this->review->user_id, $this->data['product']['thumbnail_src'][0], $this->review->username ),
  • woomotiv/trunk/readme.txt

    r2538396 r2560163  
    33Requires at least: 4.6
    44Tested up to: 5.7.0
    5 Stable tag: 3.3.0
     5Stable tag: 3.3.1
    66Requires PHP: 5.6
    77Tags: woocommerce notification, woocommerce sales notification, woocommerce sales popup, marketing, boost sales, boost conversion
     
    101101== Changelog ==
    102102
     103= 3.3.1 =
     104
     105* Fixed PHP warnings
     106
    103107= 3.3.0 =
    104108
  • woomotiv/trunk/views/tabs/style.php

    r2264300 r2560163  
    7272    'items' => array(
    7373        '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'),
    7777        'slideup'       => __('Slide Up','woomotiv'),
    7878        'slidedown'     => __('Slide Down','woomotiv'),
Note: See TracChangeset for help on using the changeset viewer.