jozik
Forum Replies Created
-
Hi, I guess your theme shows options only for posts not custom posts (in that case you have to ask author to modify code or change code yourself).
But you can also try checking ‘Screen Options’ in top right corner of screen when editing post, to see if options are hidden.
http://codex.wordpress.org/Administration_Screens#Screen_OptionsHi, for first issue: no specific settings are required to have taxonomy archive (listings) pages. Try refreshing (re-saving) Settings->Permalinks.
You can set which post types use specific custom taxonomy on post type edit screen (Select Taxonomies) or taxonomy edit screen (Select Post Types).
Hi, check if these docs can help:
http://codex.wordpress.org/Conditional_Tags#A_Post_Type
http://codex.wordpress.org/Conditional_Tags#A_Taxonomy_PageAlso be sure to make these checks after ‘init’ hook.
Hi Jason,
we’re considering to display hidden meta fields on control screen (names with underscore as prefix).For now if you can – use workaround:
This should be performed once and removed from code:
add_action( 'types_after_init', '__test' ); function __test(){ require_once WPCF_ABSPATH . '/includes/fields.php'; wpcf_types_cf_under_control( 'add', array( 'fields' => array('_price_' . md5( 'wpcf_not_controlled' )), 'type' => 'textfield' ) ); }Field still won’t be displayed in control screen.
Can be added to group of fields after that using group edit screen.
Tested for basic functionality – adding, inserting shortcode, rendering.Forum: Plugins
In reply to: [Toolset Types - Custom Post Types, Custom Fields and Taxonomies] Need help.You can use any standard WP querying on post types created by Types.
Here are docs:
http://codex.wordpress.org/Template_Tags/get_posts
http://codex.wordpress.org/Class_Reference/WP_QueryNot quite tutorials, but you can use some of code snippets there, I’m sure some will fit in your need.
Can you try removing field using Types->Custom Field Control screen?
Clicking X icon on group edit screen will only hide field from that screen – not actually removing field from DB. It’s design flaw and we’ll probably change it soon.
eaglejohn, do you have any PHP error output (if debugging is enabled) on your site?
I just checked, clicking X icon works fine for me. Nobody else reported this issue yet.
To remove fields completely use Custom Fields Control Screen.
Clicking X icon on edit screen will just hide them from that screen.Can you go to screen Types->Settings and clear cached images?
I tested code you paste and appears working fine.We had some issue when one of parameters is missing (width or height). This should be fixed in 1.5.2 version. Please can you update and check if issue is resolved?
Yes, it’s possible to have page and custom post with same slug. Right posts/pages will be found.
Thank you for suggestion. We’re considering that change.
Thanks for reporting this, we’re adding it to our compatibility tests.
Hi, sorry about that – we’re working on documentation to improve it.
You can use this call to render field on frontend:
echo types_render_field("custom-field-slug-name");
Specify field name without ‘wpcf-‘ prefix.Thanks for your suggestion, we’ll add it to our queue.