Hm, the plugin is not working for me.
I’ve installed it on 1.6.8, build 20091002, but I am getting strange tag code parsed in my template:
{REL[field_name]RIXjGqUxREL} (random chars at the end on a refresh)
When I change the custom field to a “normal” relationship type (from EE) instead of the MD Simple Relation, it works perfectly.
Anyone got an idea?
Well, you can’t use {related_entries} tags with this at all. The point of this add-on was to avoid the relationship table. If you need a regular relationship, just use the regular relationship field type. See my use case in this thread.
Things seem to have died down on this but I’m wondering if this extension will allow me to present a list of entries the user has created. The scenario:
User A can post in weblog X. User A can post in weblog Y. When user A posts in weblog Y he/she can see a list of their posts (in a drop-down) in weblog X. User A can then select from that list to create a relationship.
Of course, all this needs to be done within an SAEF.
I think the answer to this question is “not possible” but Playa can’t do this (yet) so I’m stuck unless I can find something.
Well, just about anything is possible. You could probably do this with PHP, by checking for the logged-in user’s ID and populating a drop-down with entries from Weblog X where they are the author. You may not even need PHP. Perhaps something like the following would work:
<select name="field_id_00" id="field_id_00">
{exp:weblog:entries weblog="x" disable="categories|category_fields|pagination|trackbacks" dynamic="off" author="CURRENT_USER"}
<option value="{entry_id}">{title}</option>
{/exp:weblog:entries}
</select>
You may have to embed that entries loop for it to work.
Packet Tide owns and develops ExpressionEngine. © Packet Tide, All Rights Reserved.