• Resolved kpimarketing

    (@kpimarketing)


    Please set this up so the post type can be found via Elementor or other page builders.

    I can not find “Videos” post type in Elementor blocks to add the video content to Post, Portfolio, or any other blocks types to display them nicely.

    Note: I have a Premium Plugin: Element Pack Pro for Elementor that CAN see these taxonomies, BUT there is NO FEATURED IMAGE/thumbnail showing (requested featured image option be added in another post).

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor wpvideogallery

    (@wpvideogallery)

    Kindly try adding the following code to the bottom of your theme’s functions.php file.

    function override_aiovg_videos_post_type_args( $args, $post_type ) {
        if ( 'aiovg_videos' == $post_type ) {
            $args['show_in_nav_menus'] = true;
        }
     
        return $args;
    }
    
    add_filter( 'register_post_type_args', 'override_aiovg_videos_post_type_args', 11, 2 );

    Note: I have also replied your another post with a solution to the featured image issue.

    Hope, this helped you!

    Thread Starter kpimarketing

    (@kpimarketing)

    Yes! That worked perfectly!

    Thank you very much for taking the time to help me with this.

    This in conjunction with the Featured Image integration really makes this plugin a lot more usable for me (and potentially others).

    See my other thread for some additional comments.

    Thank you again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘AIOV Taxonomy NOT Showing as a Post Type Option’ is closed to new replies.