-

·
Auto-publish WooCommerce products to Google My Business
Update February 2023: Check out our new plugin: Product Sync for GBP. Sync your WooCommerce products to your Google Business Profile in one click! Note: The article below is outdated. “Real” product creation is now available for all Premium users of the Post to Google My Business plugin. Google has removed the ability to create…
-
![Create COVID-19 updates on Google My Business [Plugin Update v2.2.17]](https://digitaldistortion.dev/wp-content/uploads/2020/05/post-image.png)
·
Create COVID-19 updates on Google My Business [Plugin Update v2.2.17]
[Free+] COVID-19 update post type added to plugin Google has recently added the COVID-19 update post type to their Google My Business platform. This post type lets you share updates and announcements about the way your business is dealing with the COVID-19 pandemic. Some example announcements: Different opening hours Your business is temporarily closed Changes…
-

·
Using spintax in Google My Business posts
Post to Google My Business (Pro & Business) support spintax to automatically generate unique GMB Posts. Spintax is a way to mark up text to generate one or more unique variations of the original. Basic spintax example Lets say your original post looks like this: At Acme Electronics, we offer all kinds of residential and…
-

·
Post your products and services to Google My Business
Update February 2023: Check out our new plugin: Product Sync for GBP. Sync your WooCommerce products to your Google Business Profile in one click! Note: The article below is outdated. “Real” product creation is now available for all Premium users of the Post to Google My Business plugin. The Post to Google My Business plugin…
-

·
How To Post to Multiple Google My Business Locations (at once)
Google My Business only allows you to create posts on a per-location basis. Tricky, if you manage multiple business locations and want to share the same message over multiple locations. You can do it manually, but that’s quite a chore. Here’s how you can post to multiple google my business locations at once. Your Google…
-
·
Action: mbp_autopost_created
The mbp_autopost_created action is triggered when a new automatic post has been created by the plugin. It has 2 variables, $gmb_name, containing Google’s internal post ID, and $gmb_url containing a direct URL to the post in the search results. Usage function do_something_with_post($gmb_name, $gmb_url){ //Do something with the $gmb_name and $gmb_url variables here. } add_action(‘mbp_autopost_created’, ‘do_something_with_post’);…
-
·
Filter: mbp_placeholder_variables
The mbp_placeholder_variables filter can be used to alter or add variables to be replaced with their corresponding value in a GMB post. It has two arguments, $variables and $parent_post_id. Samples Add a variable This will replace %custom_variable% with Custom value in the text of your post function add_custom_variable($variables, $parent_post_id){ $variables[‘%custom_variable%’] = ‘Custom value’; return $variables;…
-
·
Filter: mbp_autopost_post_args
The mbp_autopost_post_args filter allows you to alter the post arguments sent to Google My Business when the plugin creates an automatic post. It has 2 parameters, $args containing the post data and $location containing the GMB location ID. function do_something_with_the_post_args($args, $location){ //Alter the post arguments return $args; } add_filter(‘mbp_autopost_post_args’, ‘do_something_with_the_post_args’, 10, 2); Out of the…
-
![Google My Business Post Image Size [Updated 2022]](https://digitaldistortion.dev/wp-content/uploads/2018/08/image_size.png)
·
Google My Business Post Image Size [Updated 2022]
What’s the best Google My Business Post image size? Here’s the correct Google My Business Post image size and other requirements at a glance: Minimum size of 720 pixels wide and 540 pixels tall JPG, PNG or BMP file format 4:3 Aspect ratio Minimum file size of 10KB Maximum file size of 5MB Optimizing your…
-

·
Using the auto-post feature
You can use the auto-post feature to automatically publish your latest WordPress posts to Google My Business. To use it, simply tick the Auto-post to GMB checkbox before publishing your WordPress post. As a result the plugin will automatically create a new post on Google My Business when you hit Publish. Since Google My Business…