Plugin Directory

Changeset 2623385


Ignore:
Timestamp:
11/02/2021 12:02:22 PM (4 years ago)
Author:
vuukle
Message:

5.0.6 trunk release

Location:
free-comments-for-wordpress-vuukle/trunk
Files:
3 edited

Legend:

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

    r2611010 r2623385  
    44Requires at least: 2.0.2
    55Tested up to: 5.8
    6 Stable tag: 5.0.5
     6Stable tag: 5.0.6
    77License: GPLv2 or later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    172172== Changelog ==
    173173
     174= 5.0.6 =
     175
     176* Changed conditions to hide native comments
     177
    174178= 5.0.5 =
    175179
  • free-comments-for-wordpress-vuukle/trunk/free-comments-for-wordpress-vuukle.php

    r2611010 r2623385  
    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.5
     21 * Version:           5.0.6
    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.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__ ) );
    7474    $plugin->run();
    7575}
  • free-comments-for-wordpress-vuukle/trunk/public/class-free-comments-for-wordpress-vuukle-public.php

    r2611010 r2623385  
    150150     */
    151151    public function comments_open( $open ) {
    152         if ( $this->settings['enabled_comments'] == 'true' && $this->settings['embed_comments'] == '1' ) {
     152        if ( $this->settings['enabled_comments'] == 'true') {
    153153            return false;
    154154        }
     
    163163     */
    164164    public function pings_open( $open ) {
    165         if ( $this->settings['enabled_comments'] == 'true' && $this->settings['embed_comments'] == '1' ) {
     165        if ( $this->settings['enabled_comments'] == 'true' ) {
    166166            return false;
    167167        }
Note: See TracChangeset for help on using the changeset viewer.