WP Customer Reviews

Описание

Плагин WP Отзывы клиентов позволяет вывести на конкретной странице вашего сайта отзывы клиентов о вашем бизнесе или продукте или написать отзыв о блоге.

  • WP Multisite and Multiuser (WPMU / WPMS / WordPress MU) compatible.
  • Все отзывы проходят модерацию, это означает, что вы выбираете, какие отзывы показывать, а какие нет.
  • Отзывы отображаются для посетителей в удобном формате, но поисковые системы увидят микроформат (Schema.org).
  • Множественные меры анти-спама для предотвращения атак автоматических спам-ботов.
  • Полностью настраиваемый плагин: можно выбрать обязательные для заполнения поля и поля для отображения посетителям.
  • При помощи шорткодов есть возможность вставить отзывы и форму на любой странице сайиа или в виджете.
  • Поддерживает работу совместно с плагинами кэширования и пользовательскими темами.
  • Поддерживает внешние стили, так что вы можете изменить дизайн формы и самих отзывов, чтобы дизайн соответствовал вашей теме.
  • Отзывы могут быть полностью отредактированы администратором.
  • Администратор сможет отвечать на любой отзыв.
  • Поддержка создания пользовательских полей.
  • Плагин может быть использован на любом кол-ве страниц, а так же записей.
  • Поддерживает два типа отзывов: Продукт и Бизнес отзывы
  • Отображает отзывы в микроформате
  • Быстрый и легкий, включающий возможность вывода рейтинга звездочками. Этот плагин не будет нагружать ваш сайт.
  • Validates as valid XHTML 1.1 (W3C) and valid Microformats (Rich Snippets Testing Tool).
  • А так же многое другое…

Почти все новые функции плагина были добавлены с вашей подачи, так что не стесняйтесь задавать вопросы и предлагать улучшения на нашем форуме.

Больше информации на оф. сайтеt: WP Customer Reviews

Скриншоты

  • Отобразить Front-end
  • Отправить отзыв (1)
  • Отправить отзыв (2)
  • Модерирование отзыва (1)
  • Модерирование отзыва (2)
  • Настройки плагина
  • Настройки формы отправки отзыва
  • Отобразить настройки
  • Включение для страницы с "Бизнес отзывами"
  • Включение для страницы

Установка

  1. Загрузите содержимое архива (wp-customer-reviews) в /wp-content/plugins/ папку.
  2. Активируйте плагин через меню Плагины в админке WordPress.
  3. Создайте WordPress страницу, специально предназначенную для размещения отзывов или рекомендаций.
  4. Выберите слева пункт со звездочкой, чтобы перейти к настройкам плагина.

Часто задаваемые вопросы

  • Отчет об ошибках / Запросы функций: Отправить со страницы настроек плагина
  • Community Support Forum

Отзывы

10.04.2024
This is a great plugin for adding reviews to a site. Lots of customization and love the short code ability. Also has an aggregated reviews showing the total reviews and rating.
28.02.2024
Here's a custom function to display the page rating by itself anywhere on the page: function custom_wpcr3_reviews_info_shortcode($atts) { // Shortcode attributes $atts = shortcode_atts( array( 'post_id' => null, // Default to null, so it can be used for the current post/page ), $atts, 'custom_wpcr3_reviews_info' ); // Query to retrieve posts of type 'wpcr3_review' $reviews_query = new WP_Query(array( 'post_type' => 'wpcr3_review', 'posts_per_page' => -1, 'meta_query' => array( array( 'key' => 'wpcr3_review_post', 'value' => $atts['post_id'], ), ), )); // Initialize variables $total_reviews = $average_rating = 0; // Loop through each review post while ($reviews_query->have_posts()) { $reviews_query->the_post(); // Get post ID and corresponding review post ID $review_post_id = get_the_ID(); // Get the rating for the current review post $rating = get_post_meta($review_post_id, 'wpcr3_review_rating', true); // Increment total reviews and add rating to the total $total_reviews++; $average_rating += intval($rating); } // Reset the post data wp_reset_postdata(); // Calculate average rating in stars $average_rating = $total_reviews > 0 ? round($average_rating / $total_reviews) : 0; // Output HTML for displaying reviews info $output = '<div class="custom-wpcr3-reviews-info">'; $output .= '<p><a href="#reviews"><strong>Average Rating:</strong><span style="color:#ff6900;text-shadow: 1px 1px #999;"> ' . str_repeat('★', $average_rating) . ' (' . $total_reviews . ' reviews)</span></a></p>'; $output .= '</div>'; return $output; } // Register the custom shortcode add_shortcode('custom_wpcr3_reviews_info', 'custom_wpcr3_reviews_info_shortcode'); use the shortcode like this: [custom_wpcr3_reviews_info post_id=37]
03.01.2024
In Avada it generates black type on almost black background, no way to change color settings. Worthless for Avada users. Use "Site Review" instead, looks the same but works!
Посмотреть все 519 отзывов

Участники и разработчики

«WP Customer Reviews» — проект с открытым исходным кодом. В развитие плагина внесли свой вклад следующие участники:

Участники

«WP Customer Reviews» переведён на 11 языков. Благодарим переводчиков за их работу.

Перевести «WP Customer Reviews» на ваш язык.

Заинтересованы в разработке?

Посмотрите код, проверьте SVN репозиторий, или подпишитесь на журнал разработки по RSS.

Журнал изменений

3.7.2

  • 04/04/2024
  • [Update] Tested with WP 6.5

3.7.1

  • 02/23/2024
  • [Security] Security / hardening updates

3.7.0

  • 11/03/2023
  • [Fix] Plugin should be defaulted to OFF instead of ON for pages

3.6.9

  • 11/01/2023
  • [Update] Version update only

3.6.8

  • 10/24/2023
  • [Update] Compatibility with WP 6.4

3.6.7

  • 09/12/2023
  • [Update] Compatibility with WP 6.3
  • [Security] Security / hardening updates

3.6.6

  • 03/17/2023
  • [Update] Compatibility with WP 6.2

3.6.5

  • 11/01/2022
  • [Update] Compatibility with WP 6.1
  • [Bugfix] Prevent division by zero error.

3.6.4

  • 09/27/2022
  • [Update] Compatibility with WP 6.0

3.6.3

  • 01/26/2022
  • [Update] Compatibility with WP 5.9

3.6.2

  • 10/25/2021
  • [Bugfix] Fixed bug introduced in 3.6.0 which caused rounding down of aggregate review rating.

3.6.1

  • 10/20/2021
  • [Bugfix] Automatically refresh templates on plugin version update.

3.6.0

  • 10/20/2021
  • [Bugfix] Fixed validation error: Invalid object type for field «author».
  • [Bugfix] Fixed validation error: Value in property «reviewCount» must be positive.
  • [Bugfix] Fixed some invalid CSS.
  • [Update] » on [Page Name]» will no longer be redundantly output when the review being shown is on the same page it is associated with.
  • [Update] Updated schema itemtype URLs from http to https.
  • [Update] Renamed CSS file from wp-customer-reviews-generated.css to wp-customer-reviews.css and simplified usage.