video on category view

hello i don’t understand why video isn’t display in category view (or blog)
if i change theme that works
some idea ?
regards

This theme uses excerpt function the_excerptwhich is function in WordPress that makes short summaries of your text but removes all formatting and code from them. Since videos are embedded as code it removes that as well.

The option here is to replace this except functionality with full post content and you can do this by replacing this code snippet inside content.php file:

<div class="col-sm-6">
	<?php the_excerpt(); ?>
</div> 
<?php else : ?>
	<?php the_excerpt(); ?>			
<?php endif; ?> 

with code.

<div class="col-sm-6">
	<?php the_content(); ?>
</div> 
<?php else : ?>
	<?php the_content(); ?>			
<?php endif; ?>

Now content will be displayed in full on front page, blog or achieve and your videos will work as well.

that is perfect !!! 1000000 thanks