Actually, I think I got the hang of it after some trial and error. However, I’m searching through the plugin files in order to reference the functions, actions, and filters. If you have a section of your site where you list them it would make it a lot faster and easier to find the correct functions to call when needed, such as displaying title, images, descriptions, and so on. Is there something like this available?
I’m doing it like this: (Let me know if there’s a better way please)
<div class="col-lg-6 col-md-6 col-xs-12 col-sm-6">
<?php
//Product Title
do_action( 'single_product_header', 'add_product_name' );
if ( is_tax() ) {
echo term_description();
} else {
//Product Short Description
echo show_short_desc( $post, $single_names );
}
?>
</div>
<div id="product-search"><?php product_search_form(); ?></div>
<?php
//echo default_product_thumbnail();
remove_action('single_product_begin', 'add_product_breadcrumbs');
remove_action('product_listing_begin', 'add_product_breadcrumbs');
remove_action('single_product_header', 'add_product_breadcrumbs', 5);
remove_action('product_listing_header', 'add_product_breadcrumbs', 5);
content_product_adder();
?>
</div>