Is it possible to use exp:comment:form to post comments on an entry from another site? I am using MSM and pull content from default_site to ca_site. everything works well, except:
{exp:comment:form entry_id="{entry_id}" }
<ul class="form">
<li><textarea name="comment">{comment}</textarea></li>
<li><input type="checkbox" name="notify_me" value="yes" {notify_me} /><label class="wide-label">Notify me of follow-up comments?</label></li>
<li><input type="submit" name="submit" value="Submit" class="btn" /></li>
</ul>
{/exp:comment:form}will not render the comment form. I tried replacing entry_id=”{entry_id}” with entry_id=“1234” where 1234 is the ID of a entry on ca_site and the form shows up. Is it possible to comment on content pulled from default_site when it’s displayed on ca_site? or is there some sort of limiter that prevents cross content commenting?
summer