Changeset 2713377
- Timestamp:
- 04/22/2022 01:42:03 PM (4 years ago)
- Location:
- free-comments-for-wordpress-vuukle/trunk
- Files:
-
- 1 deleted
- 4 edited
-
README.txt (modified) (2 diffs)
-
free-comments-for-wordpress-vuukle.php (modified) (2 diffs)
-
includes/class-free-comments-for-wordpress-vuukle-helper.php (modified) (1 diff)
-
public/class-free-comments-for-wordpress-vuukle-public.php (modified) (1 diff)
-
public/js/free-comments-for-wordpress-vuukle-public-count.js (deleted)
Legend:
- Unmodified
- Added
- Removed
-
free-comments-for-wordpress-vuukle/trunk/README.txt
r2691393 r2713377 3 3 Tags: comments, emojis, reactions, sharebar, fb comments, revenue, amp comments, comment, ads, change ads.txt, ad manager, comment form 4 4 Requires at least: 2.0.2 5 Tested up to: 5. 86 Stable tag: 5.0. 95 Tested up to: 5.9 6 Stable tag: 5.0.10 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 172 172 == Changelog == 173 173 174 = 5.0.10 = 175 176 * Removed public js 177 * Set track page views option as "on" by default 178 174 179 = 5.0.9 = 175 180 -
free-comments-for-wordpress-vuukle/trunk/free-comments-for-wordpress-vuukle.php
r2691393 r2713377 19 19 * Plugin URI: https://vuukle.com 20 20 * 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. 921 * Version: 5.0.10 22 22 * Author: Vuukle 23 23 * Author URI: https://vuukle.com … … 71 71 */ 72 72 function 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__ ) ); 74 74 $plugin->run(); 75 75 } -
free-comments-for-wordpress-vuukle/trunk/includes/class-free-comments-for-wordpress-vuukle-helper.php
r2603146 r2713377 63 63 'start_date_comments' => gmdate( 'Y-m-d', strtotime( '-30 days' ) ), 64 64 'end_date_comments' => gmdate( 'Y-m-d' ), 65 'non_article_pages' => 'o ff',65 'non_article_pages' => 'on', 66 66 'embed_emotes_amp' => 'off', 67 67 'share' => '1', -
free-comments-for-wordpress-vuukle/trunk/public/class-free-comments-for-wordpress-vuukle-public.php
r2691393 r2713377 241 241 */ 242 242 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 248 244 } 249 245 }
Note: See TracChangeset
for help on using the changeset viewer.