--- a/opengraph_meta.admin.inc	2011-12-18 04:14:23.000000000 -0800
+++ b/opengraph_meta.admin.inc	2012-01-11 13:50:30.000000000 -0800
@@ -39,6 +39,12 @@ function opengraph_meta_settings_form() 
     '#description' => t('Absolute or site-relative URL to an image to use for the %tag tag for nodes which don\'t have their own images.',array('%tag' => 'og:image')),
     '#default_value' => variable_get(OPENGRAPH_META_VAR_FALLBACK_IMG, ''),
   );
+  $form['defaults'][OPENGRAPH_META_VAR_FALLBACK_IMG_FORCE] = array(
+    '#title' => t('Always Use Fallback Image'),
+    '#type' => 'checkbox', 
+    '#description' => t('Force the value of %tag tag for nodes to be the fallback image, regardless of other images within the node',array('%tag' => 'og:image')),
+    '#default_value' => variable_get(OPENGRAPH_META_VAR_FALLBACK_IMG_FORCE, ''),
+  );
   $form['defaults']['types'] = array(
     '#type' => 'fieldset',
     '#title' => t('Mapping content type to meta type'),
@@ -145,7 +151,8 @@ function opengraph_meta_settings_form_su
   // save other vars
   variable_set(OPENGRAPH_META_VAR_SITE_NAME, $values[OPENGRAPH_META_VAR_SITE_NAME]);
   variable_set(OPENGRAPH_META_VAR_FALLBACK_IMG, $values[OPENGRAPH_META_VAR_FALLBACK_IMG]);
-
+  variable_set(OPENGRAPH_META_VAR_FALLBACK_IMG_FORCE, $values[OPENGRAPH_META_VAR_FALLBACK_IMG_FORCE]);
+ 
   // save optional tags
   $options = array();
   foreach (_opengraph_meta_location_form_fields() as $f => $info) {
