Changeset 2623385
- Timestamp:
- 11/02/2021 12:02:22 PM (4 years ago)
- Location:
- free-comments-for-wordpress-vuukle/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
free-comments-for-wordpress-vuukle.php (modified) (2 diffs)
-
public/class-free-comments-for-wordpress-vuukle-public.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
free-comments-for-wordpress-vuukle/trunk/README.txt
r2611010 r2623385 4 4 Requires at least: 2.0.2 5 5 Tested up to: 5.8 6 Stable tag: 5.0. 56 Stable tag: 5.0.6 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.6 = 175 176 * Changed conditions to hide native comments 177 174 178 = 5.0.5 = 175 179 -
free-comments-for-wordpress-vuukle/trunk/free-comments-for-wordpress-vuukle.php
r2611010 r2623385 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. 521 * Version: 5.0.6 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. 5', plugin_dir_path( __FILE__ ), plugin_dir_url( __FILE__ ), plugin_basename( __FILE__ ) );73 $plugin = new Free_Comments_For_Wordpress_Vuukle( '5.0.6', plugin_dir_path( __FILE__ ), plugin_dir_url( __FILE__ ), plugin_basename( __FILE__ ) ); 74 74 $plugin->run(); 75 75 } -
free-comments-for-wordpress-vuukle/trunk/public/class-free-comments-for-wordpress-vuukle-public.php
r2611010 r2623385 150 150 */ 151 151 public function comments_open( $open ) { 152 if ( $this->settings['enabled_comments'] == 'true' && $this->settings['embed_comments'] == '1') {152 if ( $this->settings['enabled_comments'] == 'true') { 153 153 return false; 154 154 } … … 163 163 */ 164 164 public function pings_open( $open ) { 165 if ( $this->settings['enabled_comments'] == 'true' && $this->settings['embed_comments'] == '1') {165 if ( $this->settings['enabled_comments'] == 'true' ) { 166 166 return false; 167 167 }
Note: See TracChangeset
for help on using the changeset viewer.