Bigul Malayi
Forum Replies Created
-
Dear kryvulena,
Sorry this feature is not supported now. But we are considering it in future.
Dear frOst_EntAngLE and haleeben,
I can replicate the issue in my local installations. Thank you for reporting the issue. We will fix it as soon as possible.
For the time being please use debug log file for tracking the warnings and errors. It will help you to track the warnings and create custom post type. Please check this link more details http://codex.wordpress.org/Debugging_in_WordPress#Example_wp-config.php_for_debugging
Dear jpburn,
Please let me know the following to track the issue.
1) Your WordPress version
2) PHP version and OS
3) Your theme
4) Other Plug-ins you are usingDear frOst_EntAngLE,
Please let me know the following track the issue.
1)Your WordPress version
2)Your Types version
3)PHP version & OS
4)Other plug-ins you were using
5)Your themeDear Danielle,
Please take a backup. Then deactivate Types and check you can view Front Page Slides posts or not.
Hope you are using latest version of WordPress and Types.
Which theme you are using ?
Dear Soilchef,
Hope you are using paid version of Views. Please use our installer plug-in to upgrade Views http://wp-compatibility.com/installer-plugin/
Dear neskiclaims,
We have solved the issue. Fix will be included in Types 1.3.1 release. It will be released in few days.
Forum: Plugins
In reply to: [Toolset Types - Custom Post Types, Custom Fields and Taxonomies] PerformanceDear MCM,
Possible solution is you can use our embedded feature. Please check this tutorial for more details http://wp-types.com/documentation/embedded-types-and-views/embedding-types/
Dear neskiclaims,
Thank for reporting this issue and we can replicate it. We will fix it as soon as possible
[ Signature moderated. ]Forum: Plugins
In reply to: [Toolset Types - Custom Post Types, Custom Fields and Taxonomies] User uploadDear Sorensen84,
You using Types you can create Custom Post Type,Taxonomies and Fields. But only WordPress Dashboard(Back end) users can add content and you can display it in Front end. Please check tutorial for more details http://wp-types.com/documentation/user-guides/#Types
You can use our CRED plug-in for front-end forms to creating and editing content http://wp-types.com/home/cred/
Dear rthomas2895,
Please explain little more(Steps to replicate) to track the issue.
—
With RegardsBigul
Dear User45,
It is a WordPress behavior. Please add following code in your functions.php of theme to add custom post types to tag & category archives.
<br /> if ( ! function_exists( 'include_custom_post_types' ) ) {<br /> function include_custom_post_types( $query ) {<br /> if ( ! is_preview() && ! is_admin() && ! is_singular() ) {<br /> $args = array(<br /> 'public' => true ,<br /> '_builtin' => false<br /> );<br /> $output = 'names';<br /> $operator = 'and';<br /> $post_types = get_post_types( $args, $output, $operator );<br /> $post_types = array_merge( $post_types, array( 'post' ) );<br /> if ($query->is_feed) {<br /> } else {<br /> $my_post_type = get_query_var( 'post_type' );<br /> if ( empty( $my_post_type ) )<br /> $query->set( 'post_type', $post_types );<br /> }<br /> }<br /> } }<br /> add_action( 'pre_get_posts', 'include_custom_post_types' );<br />[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]
Dear gioglifx,
Please attach some screen shots for better understanding.
[ Moderator Note: Please post code or markup snippets between backticks or use the code button. ]