Home » Topics » Pods 1.x » Tell us what features you want to see!
Tell us what features you want to see!
This topic contains 44 replies, has 8 voices, and was last updated by Tárcio Zemel 3 years, 8 months ago.
-
AuthorPosts
-
January 23, 2009 at 8:44 am #159145
@sareiodata – Coming soon!
January 23, 2009 at 8:44 am #159146@cck – There is actually code you can already use to do this:
<?php
$Record = new Pod(‘message’);$fields = array(‘name’, ‘email’, ‘body’, ‘date’ => array(‘hidden’ => true));
echo $Record->publicForm($fields);
?>Put that onto your PodPage. What it will do is show the Name, E-mail, and Body fields in the form. There will also be a "hidden" field for Date, which will default (since it’s a Date Column Type) to the current Date/Time.
Let us know if you have any questions about this part.
January 25, 2009 at 7:37 pm #159147@javier – Single-select pick columns and other options coming soon!
January 27, 2009 at 2:31 pm #159148-
I agree, that’s very useful! Don’t be surprised if it’s in an upcoming release
-
Actually, you can already manually set your page through $Region->page = 4; so if you have two classes going on, you can set the pages different for each other manually.
January 28, 2009 at 2:39 pm #159149@Gosia – Yes, you can create a template file in your /themes directory with Pods code within it. When editing the page (that you want Pods functionality added to), select the appropriate template from the "Page Template" dropdown. If it would help, we could create a tutorial video for you…
January 28, 2009 at 4:05 pm #159150@Gosia – a new video has been added to the Tutorials section. It’ll hopefully explain a little better how to integrate Pods into WP page templates.
January 28, 2009 at 7:49 pm #159151@Gosia – you’re welcome. If anyone else is confused by some aspect of Pods, please let me know.
January 30, 2009 at 9:52 am #159152@mike – Told you about #1 didn’t I? Yep, it’s in 1.4.6 now, enjoy!
January 30, 2009 at 3:58 pm #159153Of course. In your Pod’s settings, change {@detail_url} in the List Template to something else. One example would be "/restaurants/?id={@id}". If you prefer clean URLs, you could also create "/restaurants/{@id}", and create a PodPage named "/restaurants/*" to handle the code.
February 1, 2009 at 10:40 am #159154@steve – In the process of working these features out. We’ve got some very "alpha" versions of this working, but want to clean it up so it’s easier to use and understand. We’ll try to push this out in a release as soon as we make this more solid.
February 2, 2009 at 9:28 am #159155@javier – I think that if we made Pods work with the Role Manager plugin, this would cover so many permissions issues. Where you could set individual pods and options for those pods through the Role Manager. So each group could have access to different Pods, or access to only PodPages… etc. You get the picture already
I’m working on a version of this on my branch this week.February 2, 2009 at 11:58 am #159156February 2, 2009 at 1:56 pm #159157@matt – can you make this topic sticky too?
February 2, 2009 at 10:18 pm #159158For now, you have to pull it from the URI: <?php $uri = explode(‘/’, $_SERVER['REQUEST_URI']); $id = $uri[2]; ?>
February 3, 2009 at 10:03 pm #159159@Crystal – thanks for the support! Scott is already working on Role Manager integration, and it’ll be ready for testing before too long. A lot of other cool additions are in development/testing, so expect Pods to get a lot more powerful in coming weeks.
-
-
AuthorPosts
You must be logged in to reply to this topic.