Hi everyone,
I have a simple form which can edit channel entries which custom field must satisfy a condition. Here it is.
{exp:channel:entries channel="notes" search:note_score="=100" dynamic="off" limit=1}
<?php $a = ‘{entry_id}’; ?>
{exp:safecracker entry_id='<?php echo $a; ?>' return="something"}
{status_menu}
Status
<select name=“status”>
{select_options}
</select>
{/status_menu}
<input type=“submit” value=“Submit” />
{/exp:safecracker}
{/exp:channel:entries}
The error says, title is required. But when I manually (or hard-coded) enter the entry-id, it works. Any suggestions on how to make this work?
Thanks.