Using the Breadcrumb NavXT plugin (http://mtekk.us/code/breadcrumb-navxt/) with our Origami theme doesn’t take too much effort, here is how.
Create a child theme: https://codex.wordpress.org/Child_Themes. The style.css of your child theme might look like this:
/*
Theme Name: Origami Child
Author: SiteOrgin
Template: origami
Version: 1.0.0
*/
@import url("../origami/style.css");
Copy header.php from the parent theme into your child theme.
After the last line in header.php paste the following:
<div class="breadcrumbs" xmlns:v="http://rdf.data-vocabulary.org/#">
<?php if(function_exists('bcn_display'))
{
bcn_display();
}?>
</div>
Here is the finished child theme if you’d like to jump ahead to that vs doing it yourself: https://siteorigin.com/wp-content/uploads/2014/09/origami-child-breadcrumb-plugin.zip
Install the child theme via Appearance > Themes > Add New: Upload Theme. Keep in mind that Appearance > Customize and Appearance > Menus settings need to be re-done after activating a child theme.