jozik
Forum Replies Created
-
You’re right, lib got lost somewhere on the way.
We’ll include this fix in next release.Hi anniC,
thanks for reporting, we’ll check it and post back here.We’re checking current permissions
and it will be adjusted for next release.Hi vodkasolution,
we’ll check that and report back here.#1 No, there is not yet any call to get parent post. But actually you can use WP func for that, something like:
get_permalink(get_post_meta($post_id, '_wpcf_belongs_project_id', true));
Where $post_id is child post ID.#2 There are no shortcodes, only functions for that in Types. Views have shortcodes for that.
I think that code won’t work from widget.
Only from post loop.Don’t understand question from last comment.
Can you explain little more?While in the loop, use:
$children = types_child_posts('tasks');
All Types fields related to ‘tasks’ are placed in ‘fields’ property of each returned results. Loop over returned results and render what you like.
You can also specify second parameter:
$children = types_child_posts('tasks', 'numberposts=5');
Second parameter are query args WP can use when getting posts.Can you provide some more info please?
Are you using only custom types and taxonomies created by Types?
Do you use custom fields (which ones)?
Does your theme do something with custom types or taxes created by Types.If you use only custom types and taxonomies,
there shouldn’t be any performance issues.
All Types do is – read your settings from DB for each and registers custom type/taxonomy. Nothing more.You’re right. It’s fixed and will be included in next release.
Timit, can you send login info so we can see it online,
and explain exactly what is wrong?
Also screenshots would help.
I have trouble understanding issue.
srdjan at wpml dot orgThanks,
SrdjanExcept writing your own code, I’m not sure. We added registering user’s own field types API in 0.9.4
Tutorial on how it should be out soon. There you could write your own form for field type (which could be made of more subfields, like ‘skype’ type) and you can control output by calculating all those values.
Use [show_name=”true”] parameter.
OK, it’s matter of design. We’ll consider your suggestion.
Thanks.Can you check when clicking top left link on admin post edit page ‘Screen Settings’ if checkboxes for ‘Categories’ and ‘Tags’ are checked?
Remove ‘wpcf-‘ prefix from field name. It’s prefix for internal usage. We should make that clear in our docs.
Also echo returned result:
<?php echo types_render_field(“price”, array(‘output’=>’html’)); ?>