Plugin Directory

Changeset 3016823


Ignore:
Timestamp:
01/03/2024 09:06:59 AM (2 years ago)
Author:
liquidpoll
Message:

Add new emojis for Reaction

Location:
wp-poll
Files:
318 added
4 edited

Legend:

Unmodified
Added
Removed
  • wp-poll/trunk/assets/admin/js/scripts.js

    r2931032 r3016823  
    2525            });
    2626        }
     27    });
     28
     29    $(function () {
     30        let el_sortable = $(".wpdk_settings--image-group");
     31        el_sortable.sortable();
     32        el_sortable.disableSelection();
    2733    });
    2834
  • wp-poll/trunk/includes/classes/class-meta-boxes.php

    r2937750 r3016823  
    175175                        ),
    176176                        'reviews'  => array(
    177                             'label' => esc_html__( 'Reviews', 'wp-poll' ),
     177                            'label'        => esc_html__( 'Reviews', 'wp-poll' ),
    178178                            'availability' => liquidpoll()->is_pro() ? '' : 'pro',
    179179                        ),
     
    10121012    function get_reaction_emojis() {
    10131013
    1014         $_emojis = array( 'angry', 'cry', 'dislike', 'halo', 'like', 'love', 'party', 'smile', 'thinking', 'zany', );
     1014        $_emojis = array( 'angel', 'angry', 'anger', 'blushing', 'cry', 'crying', 'cussing', 'dislike', 'flushed', 'halo', 'happy', 'heart-eyes', 'cool', 'kiss', 'meh', 'nose-stem', 'laugh', 'laughing-tears', 'like', 'love', 'party', 'sad', 'sad-tear', 'shocked', 'silly', 'sleeping', 'vomiting', 'smile', 'thinking', 'zany', );
    10151015
    10161016        foreach ( $_emojis as $emoji ) {
  • wp-poll/trunk/readme.txt

    r3013056 r3016823  
    55    Requires at least: 4.6
    66    Tested up to: 6.4.2
    7     Stable tag: 3.3.74
     7    Stable tag: 3.3.75
    88    License: GPLv2 or later
    99    License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    391391=3.3.74 =
    392392* 21/12/2023 - - FIX - Fix issues.
     393
     394= 3.3.75 =
     395* 03/01/2024 - NEW - New emoji added for Reaction.
  • wp-poll/trunk/wp-poll.php

    r3013056 r3016823  
    44 * Plugin URI: https://liquidpoll.com
    55 * Description: It allows user to poll in your website with many awesome features.
    6  * Version: 3.3.74
     6 * Version: 3.3.75
    77 * Author: LiquidPoll
    88 * Text Domain: wp-poll
     
    2929defined( 'LIQUIDPOLL_TICKET_URL' ) || define( 'LIQUIDPOLL_TICKET_URL', 'support@liquidpoll.com' );
    3030defined( 'LIQUIDPOLL_COMMUNITY_URL' ) || define( 'LIQUIDPOLL_COMMUNITY_URL', 'https://www.facebook.com/groups/liquidpoll/' );
    31 defined( 'LIQUIDPOLL_VERSION' ) || define( 'LIQUIDPOLL_VERSION', '3.3.74' );
     31defined( 'LIQUIDPOLL_VERSION' ) || define( 'LIQUIDPOLL_VERSION', '3.3.75' );
    3232
    3333if ( ! class_exists( 'LIQUIDPOLL_Main' ) ) {
Note: See TracChangeset for help on using the changeset viewer.