Better Social Sharing for WooCommerce

Generate branded OG images for every WooCommerce product page automatically. Works alongside Yoast WooCommerce SEO.

Start Generating Free

Yoast Compatible

Works alongside your existing SEO setup without conflicts.

Product Native

Uses product name and details for automatic dynamic previews.

PHP Simple

Just add to functions.php — no database changes needed.

Easy Integration

Add this snippet to your child theme's functions.php:

<?php
// Add to your child theme's functions.php
function imago_woo_og_image() {
    if ( is_product() ) {
        global $product;
        $title   = rawurlencode( $product->get_name() );
        $api_key = 'YOUR_IMAGO_API_KEY';
        $og_url  = "https://imagoapi.com/api/og/generate?title={$title}&template=modern&api_key={$api_key}";
        printf( '<meta property="og:image" content="%s" />' . PHP_EOL, esc_url( $og_url ) );
        printf( '<meta name="twitter:image" content="%s" />' . PHP_EOL, esc_url( $og_url ) );
    }
}
add_action( 'wp_head', 'imago_woo_og_image', 5 );

Ready to Upgrade Your Social Sharing?

Join thousands of WooCommerce stores using Imago API for stunning OG images.

Start Free Trial