Remove plugin’s custom post type archive page and single pages [closed]

Actually,this excerpt more with link settings automatically applies from your active theme.

In order to fix this problem,Please add the below mentioned filter hook and callback function in your active child theme .

  function pp_custom_excerpt_length($length) {
        global $post;
        // Set content length only of process posts 
        if ($post->post_type == 'process_posts' && !is_single()) {
            //change it according to your requirement 
            return 100;
        }
        return $length;

    }

  add_filter('excerpt_length', 'pp_custom_excerpt_length', 999);

Please let me know if you are unable to fix this issue.

Best Regards,

CoolHappy,

Cool Timeline Team.