Plugin Directory

Changeset 2404188


Ignore:
Timestamp:
10/21/2020 07:47:07 PM (5 years ago)
Author:
weweave
Message:
  • Set version to 1.7.2
  • Added compatibility to older WordPress versions (< 5.2.0)
  • Updated description of field "Post container selector"
Location:
wp-ajaxify-comments/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-ajaxify-comments/trunk/readme.txt

    r2389130 r2404188  
    7171== Changelog ==
    7272
     73= 1.7.2 =
     74* Added compatibility to older WordPress versions (< 5.2.0)
     75
    7376= 1.7.1 =
    7477* Added compatibility to latest WordPress versions >= 5.5.0
     
    349352== Upgrade Notice ==
    350353
     354= 1.7.2 =
     355* Added compatibility to older WordPress versions (< 5.2.0)
     356
    351357= 1.7.1 =
    352358* Added compatibility to latest WordPress versions >= 5.5.0 and updated external libraries
  • wp-ajaxify-comments/trunk/wp-ajaxify-comments.php

    r2386613 r2404188  
    66Author: weweave UG (limited liability)
    77Author URI: https://weweave.net
    8 Version: 1.7.1
     8Version: 1.7.2
    99License: GPLv2
    1010Text Domain: wpac
     
    3434define('WPAC_OPTION_KEY', WPAC_DOMAIN); // used to save options in version >= 0.9.0
    3535
    36 if (is_wp_version_compatible('5.5')) {
     36if (function_exists('is_wp_version_compatible') && is_wp_version_compatible('5.5')) {
    3737    define('WPAC_WP_ERROR_PLEASE_TYPE_COMMENT', '<strong>Error</strong>: Please type your comment text.');
    3838} else {
     
    301301                        'default' => '',
    302302                        'label' => __('Post container selector', WPAC_DOMAIN),
    303                         'description' => __('Selector that matches post containers to enable support for multiple comment forms per page; leave empty to disable multiple comment form per page support. Please note: Each post container needs to have the ID attribute defined.', WPAC_DOMAIN),
     303                        'description' => __('Selector that matches post containers to enable support for multiple comment forms per page; leave empty to disable multiple comment form per page support. Please note: Each post container needs to have the ID attribute defined. If this option is set, all other selectors cannot select the elements by ID, but have to select the elements inside the post container for example by element and/or class.', WPAC_DOMAIN),
    304304                ),
    305305                'commentPagesUrlRegex' => array(
Note: See TracChangeset for help on using the changeset viewer.