Changeset 2454222
- Timestamp:
- 01/11/2021 11:36:23 PM (5 years ago)
- Location:
- disqus-comment-system/trunk
- Files:
-
- 4 added
- 4 deleted
- 4 edited
-
README.txt (modified) (6 diffs)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.17.js (deleted)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.17.js.map (deleted)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.17.min.js (deleted)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.17.min.js.map (deleted)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.19.js (added)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.19.js.map (added)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.19.min.js (added)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.19.min.js.map (added)
-
disqus.php (modified) (2 diffs)
-
public/class-disqus-public.php (modified) (2 diffs)
-
rest-api/class-disqus-rest-api.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
disqus-comment-system/trunk/README.txt
r2044176 r2454222 1 1 === Disqus Comment System === 2 Contributors: disqus, alexkingorg, crowdfavorite, zeeg, tail, thetylerhayes, ryanv12, iamfrancisyo, brevityness 3 Tags: comments, threaded, email, notification, spam, avatars, community, profile, widget, disqus2 Contributors: disqus, alexkingorg, crowdfavorite, zeeg, tail, thetylerhayes, ryanv12, iamfrancisyo, brevityness, tterb 3 Tags: disqus, comments, engagement, threaded, email, notification, spam, avatars, community, profile, widget 4 4 Requires at least: 4.4 5 Tested up to: 5. 16 Stable tag: 3.0.1 77 Requires PHP: 5. 45 Tested up to: 5.6 6 Stable tag: 3.0.19 7 Requires PHP: 5.6 8 8 9 9 Disqus is the web's most popular comment system. Use Disqus to increase engagement, retain readers, and grow your audience. … … 23 23 * Keep spam out with our best-in-class anti-spam filter powered by Akismet 24 24 * Single profile for commenting on over 4 million sites including social login support for Facebook, Twitter, and Google accounts 25 * Trusted by sites like Wired, CBS, and Entertainment Weekly25 * Trusted by sites like ABC News, Entertainment Weekly, and Rotten Tomatoes 26 26 27 27 = Disqus Features = … … 43 43 * Instant activity notifications, email notifications, and digests pull readers back in 44 44 * User profiles that show you recent comment history and frequented communities 45 * Discovery widget that shows active discussionshappening elsewhere on your site45 * Recommendations widget that shows where active discussions are happening elsewhere on your site 46 46 47 47 = Moderation Features = … … 81 81 = How do I set up Single Sign-On (SSO)? = 82 82 83 SSO allows users in your database to comment without requiring them to register with Disqus. Access to SSO is currently available as an add-on for users with a [ Pro subscription](https://help.disqus.com/customer/en/portal/articles/2759918-disqus-pricing-and-plans#pro-plan). If you would like to enable this feature, [contact our Support team](https://disqus.com/support/?article=contact_SSO). Also check out our guide for [setting up SSO on WordPress](https://help.disqus.com/customer/portal/articles/1148635).83 SSO allows users in your database to comment without requiring them to register with Disqus. Access to SSO is currently available as an add-on for users with a [Business subscription](https://help.disqus.com/customer/en/portal/articles/2759918-disqus-pricing-and-plans#business-plan). If you would like to enable this feature, [contact our Support team](https://disqus.com/support/?article=contact_SSO). Also check out our guide for [setting up SSO on WordPress](https://help.disqus.com/customer/portal/articles/1148635). 84 84 85 85 = I’m experiencing an issue with my installation of Disqus. = … … 112 112 113 113 1. Disqus Comments 114 2. Comment Reply115 3. Disqus Audience Platform114 2. Disqus Audience Platform 115 3. Comment Reply 116 116 4. Featured Comment 117 5. Discovery Box(part of Disqus Comments)117 5. Recommendations (part of Disqus Comments) 118 118 6. Mentions 119 119 7. Real-time Comments … … 124 124 125 125 == Changelog == 126 127 = 3.0.19 = 128 * Fixed issue with missing admin bundles 129 130 = 3.0.18 = 131 * Tested plugin with WordPress 5.6 and updated documentation 132 * Fixed count.js script being loaded on unnecessary pages 133 * Fixed comments showing sync date instead of creation date in WordPress admin 126 134 127 135 = 3.0.17 = -
disqus-comment-system/trunk/disqus.php
r2044176 r2454222 16 16 * Plugin URI: https://disqus.com/ 17 17 * Description: Disqus helps publishers increase engagement and build loyal audiences. Supports syncing comments to your database for easy backup. 18 * Version: 3.0.1 718 * Version: 3.0.19 19 19 * Author: Disqus 20 20 * Author URI: https://disqus.com/ … … 25 25 */ 26 26 27 $DISQUSVERSION = '3.0.1 7';27 $DISQUSVERSION = '3.0.19'; 28 28 29 29 // If this file is called directly, abort. -
disqus-comment-system/trunk/public/class-disqus-public.php
r1881615 r2454222 209 209 */ 210 210 public function enqueue_comment_count() { 211 if ( $this->dsq_can_load( 'count' ) ) { 211 global $post; 212 213 if ( $this->dsq_comment_count_can_load_for_post( $post ) ) { 212 214 213 215 $count_vars = array( … … 259 261 if ( is_bool( $site_allows_load ) ) { 260 262 return $site_allows_load; 263 } 264 265 return true; 266 } 267 268 /** 269 * Determines if Disqus is configured and should load the comment count script on a given page. 270 * 271 * @since 3.0.18 272 * @access private 273 * @param WP_Post $post The WordPress post used to determine if Disqus can be loaded. 274 * @return boolean Whether Disqus is configured properly and should load the comment count on the current page. 275 */ 276 private function dsq_comment_count_can_load_for_post( $post ) { 277 // Checks if the plugin is configured properly 278 // and is a valid page. 279 if ( ! $this->dsq_can_load( 'count' ) ) { 280 return false; 281 } 282 283 // Make sure we have a $post object. 284 if ( ! isset( $post ) ) { 285 return false; 286 } 287 288 // Make sure comments are open if it's a single post page. 289 if ( is_singular() && ! comments_open() ) { 290 return false; 261 291 } 262 292 -
disqus-comment-system/trunk/rest-api/class-disqus-rest-api.php
r2044176 r2454222 807 807 'comment_author_url' => isset( $author['url'] ) ? $author['url'] : '', 808 808 'comment_content' => $post['raw_message'], 809 'comment_date' => $post['createdAt'], 809 810 'comment_date_gmt' => $post['createdAt'], 810 811 'comment_type' => '', // Leave blank for a regular comment.
Note: See TracChangeset
for help on using the changeset viewer.