diff --git wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wordcamp-coming-soon-page.php wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wordcamp-coming-soon-page.php
index 6ccb5b4..565b567 100644
--- wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wordcamp-coming-soon-page.php
+++ wordcamp.org/public_html/wp-content/plugins/wordcamp-coming-soon-page/classes/wordcamp-coming-soon-page.php
@@ -12,6 +12,7 @@ class WordCamp_Coming_Soon_Page {
 		add_action( 'wp_enqueue_scripts', array( $this, 'manage_plugin_theme_stylesheets' ), 99 );    // (hopefully) after all plugins/themes have enqueued their styles
 		add_action( 'wp_head',            array( $this, 'render_dynamic_styles' ) );
 		add_filter( 'template_include',   array( $this, 'override_theme_template' ) );
+		add_action( 'tempalte_redirect',  array( $this, 'disable_jetpacks_open_graph' ) );
 
 		add_image_size( 'wccsp_image_medium_rectangle', 500, 300 );
 	}
@@ -105,6 +106,15 @@ class WordCamp_Coming_Soon_Page {
 	}
 
 	/**
+	 * Disable Jetpack's Open Graph meta tags when the Coming Soon page is active
+	 */
+	public function disable_jetpacks_open_graph() {
+		if ( $this->override_theme_template ) {
+			add_filter( 'jetpack_enable_open_graph', '__return_false' );
+		}
+	}
+
+	/**
 	 * Collect all of the variables the Coming Soon template will need
 	 * Doing this here keeps the template less cluttered and more of a pure view
 	 *
