Skip to content

Add Google Maps to WooCommerce product pages ​

If you run a local business with both a physical store and a WooCommerce shop, showing your location on product pages builds trust and drives foot traffic. Here is how to add Google Maps and Street View to WooCommerce using WP Google Street View.

Why add maps to product pages? ​

Local businesses that sell products online often miss an opportunity: customers who discover you online may not realize you have a physical store nearby. A map on the product page bridges this gap. It says: "You can also visit us in person."

This is especially powerful for businesses like bakeries, florists, wine shops, specialty food stores, and artisan workshops where seeing the physical space adds perceived value.

Method 1: Shortcode in product description ​

The simplest approach. Edit any WooCommerce product and add the shortcode in the product description or short description:

[wpgsv_map lat="45.5017" lng="-73.5673" type="streetmap" zoom="15" height="300px"]

Method 2: Global map in a WooCommerce tab ​

If you want the same map on every product page, create a custom WooCommerce tab using a snippet or a plugin like "Custom Product Tabs":

  1. Create a new tab called "Visit our store" or "Our location"
  2. Add the WPGSV shortcode inside the tab content
  3. The map appears on every product page in a dedicated tab

Method 3: Template override for developers ​

For full control, add the shortcode to your WooCommerce template:

php
// In your child theme's functions.php or a custom plugin
add_action('woocommerce_after_single_product_summary', function() {
    echo '<div class="store-location-map">';
    echo '<h3>Visit our store</h3>';
    echo do_shortcode('[wpgsv id="42"]');
    echo '</div>';
}, 25);

Combine with Local SEO ​

Enable the LocalBusiness schema in WP Google Street View Pro to add structured data alongside the map. This helps Google connect your online store with your physical location in local search results.

Try Pro free for 7 days

All features unlocked. Cancel anytime.

Start free trial