Linux 软件免费装
Banner图

Google Customer Reviews for WooCommerce

开发者 ecreationsllc
ccloyd
scottg11
natekinkead
更新时间 2019年1月17日 04:42
PHP版本: 3.0.0 及以上
WordPress版本: 5.0.2
版权: GPLv3
版权网址: 版权信息

标签

WooCommerce Opt-in Google Customer Reviews Google Merchant Google Trusted Sites Badge Google Rating Badge GCR

下载

1.0.2 1.0.3 1.0.4 1.1 1.1.1 1.2 1.3 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.6.1 2.6.10 2.6.11 2.6.12 2.6.2 2.6.4 2.6.5 2.6.6 2.6.7 2.6.8 2.6.9 2.6.3 1.0.1

详情介绍:

This is THE WordPress plugin to integrate Google Merchant Center's "Google Customer Reviews" into your WooCommerce store. It allows the Survey Opt-in code onto your Thank You (Order Received) page and your View Past Order page with the option to pick which location the popup will appear. It can also send GTIN data to Google for each product purchase which enabled product reviews. It also integrates the Google Customer Reviews Badge onto your site. You can choose to show it in the bottom left or bottom right. You can also choose to only show the badge when users are in the WooCommerce area of your website. To enable the functionality of this plugin, you need to paste your Google Merchant ID in the plugin settings page. Made with love by eCreations, the ONLY Certified WooCommerce Expert in Arizona! Check Out our Premium Plugins WooCommerce Extension / Plugin for Transaction Central WooCommerce Extension for Paid Calendar Events WooCommerce Extension for Product Attribute Coupon WooCommerce Extension to Export Orders to ShopWorks WooCommerce Extension to Sponsor Calendar Events Features:

安装:

To install Google Customer Reviews for WooCommerce, follow these steps:
  1. Download and unzip the plugin
  2. Upload the entire ecr-google-customer-reviews/ directory to the /wp-content/plugins/ directory
  3. Activate the plugin through the Plugins menu in WordPress

屏幕截图:

  • The Survey Opt-in popup on the Thank You (Order Received) Page
  • The Google Customer Reviews Rating Badge
  • The settings page for Google Customer Reviews for WooCommerce plugin

常见问题:

How do I add GTINs (Global Trade Item Numbers) to my products to enable Product Reviews?

Edit each product in WooCommerce. In the "Product data" panel, click on the "Inventory" tab. You should see a new field labeled "GTIN". Enter your UPC, EAN, or ISBN for the product and click "Update".

Why is the survey opt-in not showing up?

There are many reasons why the survey opt-in is not coming up, most of them out of our control. This plugin integrates the code according to Google's guidelines, but it's up to Google and your Merchant Center account to actually display something.

  • Make sure you have an active Google Merchant account and you've activated the Google Customer Reviews program within your account.
  • Make sure you've visited the setting page ( Settings > Google Customer Reviews ) and configured your settings with your correct Google Merchant ID number.

Does the survey opt-in show on mobile devices?

Yes, it does now! Originally it didn't and at that time, according to Google, the GCR opt-in survey would not show on mobile devices. They had said "Thanks for your feedback though and we will take it onboard for future reference." Well, I'm happy to report that it seems Google really has taken this feedback and implemented the survey popup on mobile devices. No update of this plugin is necessary for this new feature. If you find it's not working for you, please let us know in the support forum. Thanks.

Why does the survey opt-in not show on some browsers

I don't have a complete answer for this yet, but I've heard reports of users not able to see the survey opt-in on some browsers. In one case, simply going to that same (order received) URL in Incognito Mode resolved the issue, so there must be some kind of browser extension or recognized session that prevents the survey opt-in. But, rest assured, if it works in Incognito Mode, then it should work for your customers.

Why have I not received the survey email yet?

There is a setting for this plugin that allows you to choose the number of days that Google should wait before sending the email. This setting is called “Estimated Delivery (days)”. This is to make sure the survey goes out after the customer has received the item. Please be aware that Google often will send the email 3-4 days after the amount of days that you provide in this setting. I think that is to give the customer ample time to use the product in order to be able to give a review.

Why does the email address appear html encoded on the survey opt-in?

In the rare case you are using another WordPress plugin that obfuscates email addresses, that can cause this issue with this plugin. The email on the survey opt-in will appear with a bunch of seemingly random characters. One such plugin that causes this issue is WP-Spamshield. If using that plugin, check the option called "Disable email harvester protection" and that will fix the issue.

How do I use a hook to conditionally hide the Google Customer Reviews Badge on certain pages?

You can use the filter hook called 'ecr_show_gcr_badge'. Return false inside of a condition to prevent it from displaying for that condition. Here is an example that hides the badge for product ID 1280. function my_gcr_badge_function($show) { if(get_the_ID() == 1280) { return false; } return $show; } add_filter('ecr_show_gcr_badge', 'my_gcr_badge_function');

How do modify the delivery days per order using my own logic?

You can use the filter hook called 'gcr_delivery_days'. `function my_delivery_days_function($num_days, $order) { // $order is the WC_Order object so you can run any of the relevant methods on it // $num_days is the number of days it typically takes to deliver. This function is overriding the default from the plugin settings. // Do something with the $order object to change the $num_days integer. return (int)$num_days; } add_filter('gcr_delivery_days', 'my_delivery_days_function');`

更新日志:

2.6.12 2.6.11 2.6.10 2.6.9 2.6.8 2.6.7 2.6.6 2.6.5 2.6.4 2.6.3 2.6.2 2.6.1 2.6 2.5 2.4 2.3 2.2 2.1 2.0 1.3 1.0.3 1.0.2 1.0.1 1.0