Visual Composer Templatera Support
-
Hi,
What kin of custom post type support is needed for Nested Pages so the sorting/interface can be used on that post type.
I once had this enabled for Templatera, the Visual Composer Templating system.
But since their update I can’t get it to work anymore.
I’ve set the heiarchical status to true and tested a bunch of other options, and went through the register_post_type codex and it is just not working out anymore for what I try.
Can you help me here? What may be needed other than just hierarchical support? Something blocking it?
Here is the code for Templatera in short…
function createPostType() { register_post_type( self::$post_type, array( 'labels' => array( 'add_new_item' => __( 'Add template', "templatera" ), 'name' => __( 'VC Templates', "templatera" ), 'singular_name' => __( 'Template', "templatera" ), 'edit_item' => __( 'Edit Template', "templatera" ), 'view_item' => __( 'View Template', "templatera" ), 'search_items' => __( 'Search Templates', "templatera" ), 'not_found' => __( 'No Templates found', "templatera" ), 'not_found_in_trash' => __( 'No Templates found in Trash', "templatera" ), ), 'public' => false, 'has_archive' => false, 'show_in_nav_menus' => true, 'exclude_from_search' => true, 'publicly_queryable' => true, 'show_ui' => true, 'query_var' => true, 'capability_type' => 'post', 'hierarchical' => true, 'menu_position' => null, 'menu_icon' => $this->assetUrl( 'images/icon.gif' ) ) ); }
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘Visual Composer Templatera Support’ is closed to new replies.