Hi corbettbarr,
As i didn’t have post excerpt for my posts and needed that og:description i did the following:
after line 957 in AWD_facebook.php i created a new variable
$desc = str_replace("\"","",$post->post_content);
and then on the following line, the one with $array_replace
, i have inserted my variable after $home_url
:
$array_replace = array($blog_name,$blog_description,$home_url,$post->post_title,$desc,$img,get_permalink($post->ID));
After these code changes i left that %POST_EXCERPT% command in Open Graph settings(in the plugin) and it works like a charm.