This topic has 6 replies, 2 voices, and was last updated 9 years by sharmstr.

  • Author
  • #52766
     solokco
    Participant

    I’m trying to use the Post Grid Settings to show my Custom Post Type, but it does not shows on the list. Is there anything I need to do to show my CPT on the List?

    Note: The CPT it’s working fine in other parts of the page that I have program manually.

    #52767
     sharmstr
    Moderator

    For which post grid shortcode? The Kleo one, the VC one or the VC Masonry one?

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #52768
     solokco
    Participant

    VC Masonry and VC. None show my CPT.

    Kleo shortcode does.

    #52769
     sharmstr
    Moderator

    Then I dont know. Those are shortcodes that come with VC. Kleo doesnt touch them.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #52770
     sharmstr
    Moderator

    It says it works perfectly with CPTS :/ http://vc.wpbakery.com/features/grid-builder/

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    #52790
     solokco
    Participant

    Thanks.

    I went to the VC support and found part of the solution.
    https://wpbakery.atlassian.net/wiki/display/VC/I+can+not+use+Visual+Composer+on+Posts+and+Custom+Posts

    Still working on this because it wont show on the editor. I asume that there is something overwriting this option.

    Will keep looking

    #52795
     sharmstr
    Moderator

    That options allows you to use VC when creating your post (CPT). It doesnt have anything to do with that list, as you’ve discovered.

    The funny thing is that I can see the kleo CPTS (portfolios, testimonials and clients) in the list. I wonder if it has something to do with how you set up the CPT. Maybe you needed to set something. Take a look at the arguments used when kleo sets up the client post type. Specifically ‘publicly_queryable’ => true. Maybe that will help?

    COPY CODE
    
    $args = array(
                'labels' => $this->get_labels( 'clients', $this->labels['clients']['singular'], $this->labels['clients']['plural'], $this->labels['clients']['menu'] ),
                'public' => true,
                'publicly_queryable' => true,
                'show_ui' => true,
                'show_in_menu' => TRUE,
                'menu_icon' => 'dashicons-businessman',
                'query_var' => true,
                'rewrite' => array( 'slug' => esc_attr( apply_filters( 'kleo_clients_slug', 'clients' ) )),
                'has_archive' => true,
                'hierarchical' => false,
                'menu_position' => 20, // Below "Pages"
                'supports' => array( 'title', 'thumbnail' )
            );
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 7 posts - 1 through 7 (of 7 total)

The forum ‘KLEO’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?