jozik
Forum Replies Created
-
Hi, are fields appearing in reverse order or shuffled?
Can you try using API call?:
types_field_get_meta_value_repetitive(‘photo’, get_the_ID());
It should return array of values as ordered on post edit screen.We’ll include this addition in one of upcoming releases.
Are you seeing both (or wrong) post types on frontend?
like when visiting URL: http://mysite.com/events/Can you check rewrite slug settings?
Yes, you are right but part where you can see ‘avoid checking itself’ should just remove post_type/taxonomy from list of registered post types or taxonomies.
Types checks for:
1. fixed list of terms which are reserved
2. does not allow registering post_type with same name as some custom taxonomy (or other way)Can you try with surely unique names (maybe try something silly just for test)?
Hi greeenkaos,
there were changes how custom fields are saved.
Initially Types saved empty fields, which was cancelled at 1.2 version.
Later we brought back saving empty fields because of users requests.Last version that do not save empty fields is 1.3.1.
Hope this helps.Hi haleeben,
looks like some of conditional data is corrupted.
We’ll add check to avoid that, to fix it try
to open field settings and remove/check it’s
conditional settings.Release candidate is being tested, we hope to release it soon.
Hi all, strict issues are fixed for next release.
Note that $in_same_cat works fine with Categories but not with other custom taxonomies.
So this should work fine if you expect link to post in same Category:
previous_post_link( ‘%link’, ‘Previous’, true );right, you can use:
previous_post_link() and next_post_link()
in single post template.Hi Henk,
there are no calls to get_settings() in Types.
Only get_option().If you have a chance, can you tell what you changed to fix this error?
Thanks,
SrdjanHi moxojo,
I think you’re setting filter to show Group on post edit screen for post that has some term associated to it.It does not mean it will appear on term or taxonomy edit screen. But that it will appear when editing post that has specified term.
Hope it helps.
Hi Nic,
you can use this calls to get descriptions:// For custom taxonomy
$my_taxonomy = get_taxonomy( ‘my-taxonomy’ );
echo $my_taxonomy->description;// For custom post type
$my_post_type = get_post_type_object( ‘my-post-type’ );
echo $my_post_type->description;Hi progenki,
on CPT edit screen there is setting:
Display Sections->Comments checkbox.
Enable it to have comments for CPT.Hi kcorcoran,
are you still having this issue?