Changeset 2404188
- Timestamp:
- 10/21/2020 07:47:07 PM (5 years ago)
- Location:
- wp-ajaxify-comments/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-ajaxify-comments.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-ajaxify-comments/trunk/readme.txt
r2389130 r2404188 71 71 == Changelog == 72 72 73 = 1.7.2 = 74 * Added compatibility to older WordPress versions (< 5.2.0) 75 73 76 = 1.7.1 = 74 77 * Added compatibility to latest WordPress versions >= 5.5.0 … … 349 352 == Upgrade Notice == 350 353 354 = 1.7.2 = 355 * Added compatibility to older WordPress versions (< 5.2.0) 356 351 357 = 1.7.1 = 352 358 * Added compatibility to latest WordPress versions >= 5.5.0 and updated external libraries -
wp-ajaxify-comments/trunk/wp-ajaxify-comments.php
r2386613 r2404188 6 6 Author: weweave UG (limited liability) 7 7 Author URI: https://weweave.net 8 Version: 1.7. 18 Version: 1.7.2 9 9 License: GPLv2 10 10 Text Domain: wpac … … 34 34 define('WPAC_OPTION_KEY', WPAC_DOMAIN); // used to save options in version >= 0.9.0 35 35 36 if ( is_wp_version_compatible('5.5')) {36 if (function_exists('is_wp_version_compatible') && is_wp_version_compatible('5.5')) { 37 37 define('WPAC_WP_ERROR_PLEASE_TYPE_COMMENT', '<strong>Error</strong>: Please type your comment text.'); 38 38 } else { … … 301 301 'default' => '', 302 302 '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), 304 304 ), 305 305 'commentPagesUrlRegex' => array(
Note: See TracChangeset
for help on using the changeset viewer.