Plugin Directory

Changeset 2855231


Ignore:
Timestamp:
01/26/2023 02:29:52 PM (3 years ago)
Author:
liquidpoll
Message:

New license system added for the pro version.

Location:
wp-poll
Files:
285 added
2 edited

Legend:

Unmodified
Added
Removed
  • wp-poll/trunk/readme.txt

    r2849790 r2855231  
    55    Requires at least: 4.6
    66    Tested up to: 6.1.1
    7     Stable tag: 3.3.56
     7    Stable tag: 3.3.57
    88    License: GPLv2 or later
    99    License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    338338* 16/01/2023 - FIX - Fix responsive issues.
    339339
     340= 3.3.57 =
     341* 26/01/2023 - NEW - Update license system for the pro version.
     342
  • wp-poll/trunk/wp-poll.php

    r2849790 r2855231  
    44 * Plugin URI: https://liquidpoll.com
    55 * Description: It allows user to poll in your website with many awesome features.
    6  * Version: 3.3.56
     6 * Version: 3.3.57
    77 * Author: LiquidPoll
    88 * Text Domain: wp-poll
     
    2727defined( 'LIQUIDPOLL_TICKET_URL' ) || define( 'LIQUIDPOLL_TICKET_URL', 'https://www.liquidpoll.com/my-account/' );
    2828defined( 'LIQUIDPOLL_COMMUNITY_URL' ) || define( 'LIQUIDPOLL_COMMUNITY_URL', 'https://www.facebook.com/groups/liquidpoll/' );
    29 defined( 'LIQUIDPOLL_VERSION' ) || define( 'LIQUIDPOLL_VERSION', '3.3.56' );
     29defined( 'LIQUIDPOLL_VERSION' ) || define( 'LIQUIDPOLL_VERSION', '3.3.57' );
    3030
    3131if ( ! class_exists( 'LIQUIDPOLL_Main' ) ) {
     
    130130            wp_enqueue_style( 'liquidpoll-admin', LIQUIDPOLL_PLUGIN_URL . 'assets/admin/css/style.css', array(), $version );
    131131
    132             wp_enqueue_script('jquery-ui-datepicker');
     132            wp_enqueue_script( 'jquery-ui-datepicker' );
    133133            wp_enqueue_script( 'jquery-ui-sortable' );
    134134            wp_enqueue_script( 'apexcharts', plugins_url( 'assets/apexcharts.js', __FILE__ ) );
     
    177177// Update license server
    178178add_filter( 'WPDK_Settings/Filters/integration_server_wp_poll', function () {
    179     return esc_url( 'https://www.liquidpoll.com' );
     179    return esc_url( 'https://www.liquidpoll.com' );
    180180} );
    181181
    182182// Update license secret key
    183183add_filter( 'WPDK_Settings/Filters/license_secret_key_wp_poll', function () {
    184     return '6287d0ca3125a4.96767836';
     184    return '6287d0ca3125a4.96767836';
    185185} );
    186186
     
    198198
    199199    $liquidpoll_wpdk = new WPDK\Client( esc_html( 'LiquidPoll' ), 'wp-poll', 126, __FILE__ );
    200     $liquidpoll_wpdk->notifications();
    201200
    202201    do_action( 'wpdk_init_wp_poll', $liquidpoll_wpdk );
     
    210209wpdk_init_wp_poll();
    211210
    212 add_action( 'plugins_loaded', array( 'LIQUIDPOLL_Main', 'instance' ), 90 );
     211add_action( 'plugins_loaded', array( 'LIQUIDPOLL_Main', 'instance' ), 80 );
Note: See TracChangeset for help on using the changeset viewer.