I am new to WordPress and WooCommerce, I believe I have identified the line of code that is producing the output I want changed.
I am using free artificer theme from WooCommerce and the index.php has a line:
<h3>
<?php the_title(); ?>
<span class="price">
<?php echo $_product->get_price_html(); ?>
</span>
</h3>
This produces something like "Black Stone - $43" (i.e. product title - price)
I want something like "Black Stone
$43"
(i.e. product title <br/>
price)
It looks like there are some filters for the ``get_price_html()` function, but the documentation is not very good or I just don't understand how to navigate through it.
Any direction would be appreciated.
Thanks.
still produces the - so it must be coming in from a hook or something. – user2612580 Oct 18 '13 at 23:44