Plugin Directory

Changeset 2713377


Ignore:
Timestamp:
04/22/2022 01:42:03 PM (4 years ago)
Author:
vuukle
Message:

5.0.10 trunk release

Location:
free-comments-for-wordpress-vuukle/trunk
Files:
1 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • free-comments-for-wordpress-vuukle/trunk/README.txt

    r2691393 r2713377  
    33Tags: comments, emojis, reactions, sharebar, fb comments, revenue, amp comments, comment, ads, change ads.txt,  ad manager, comment form
    44Requires at least: 2.0.2
    5 Tested up to: 5.8
    6 Stable tag: 5.0.9
     5Tested up to: 5.9
     6Stable tag: 5.0.10
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    172172== Changelog ==
    173173
     174= 5.0.10 =
     175
     176* Removed public js
     177* Set track page views option as "on" by default
     178
    174179= 5.0.9 =
    175180
  • free-comments-for-wordpress-vuukle/trunk/free-comments-for-wordpress-vuukle.php

    r2691393 r2713377  
    1919 * Plugin URI:        https://vuukle.com
    2020 * Description:       Vuukle is the smartest commenting platform that offers AI-powered commenting, Unique Sharing tool bar, Emoji reaction widget and real time analytics with just one click. Customize all you want, make your pages load faster and experience user engagement like never before!
    21  * Version:           5.0.9
     21 * Version:           5.0.10
    2222 * Author:            Vuukle
    2323 * Author URI:        https://vuukle.com
     
    7171 */
    7272function Run_Free_Comments_For_Wordpress_vuukle() {
    73     $plugin = new Free_Comments_For_Wordpress_Vuukle( '5.0.9', plugin_dir_path( __FILE__ ), plugin_dir_url( __FILE__ ), plugin_basename( __FILE__ ) );
     73    $plugin = new Free_Comments_For_Wordpress_Vuukle( '5.0.10', plugin_dir_path( __FILE__ ), plugin_dir_url( __FILE__ ), plugin_basename( __FILE__ ) );
    7474    $plugin->run();
    7575}
  • free-comments-for-wordpress-vuukle/trunk/includes/class-free-comments-for-wordpress-vuukle-helper.php

    r2603146 r2713377  
    6363            'start_date_comments'         => gmdate( 'Y-m-d', strtotime( '-30 days' ) ),
    6464            'end_date_comments'           => gmdate( 'Y-m-d' ),
    65             'non_article_pages'           => 'off',
     65            'non_article_pages'           => 'on',
    6666            'embed_emotes_amp'            => 'off',
    6767            'share'                       => '1',
  • free-comments-for-wordpress-vuukle/trunk/public/class-free-comments-for-wordpress-vuukle-public.php

    r2691393 r2713377  
    241241         */
    242242        if ( $this->app_id && $this->checkAvailability( false ) ) {
    243             wp_enqueue_script( $this->attributes['name'] . '-public-count', $this->attributes['public_dir_url'] . 'js/' . $this->attributes['name'] . '-public-count.js', null, $this->attributes['version'] );
    244             wp_localize_script( $this->attributes['name'] . '-public-count', 'params', array(
    245                 'api_key' => $this->app_id,
    246                 'host'    => str_replace( array( 'www.', 'http://', 'https://' ), '', get_site_url() ),
    247             ) );
     243            // Load script here
    248244        }
    249245    }
Note: See TracChangeset for help on using the changeset viewer.