Ok, here’s some more info:-
I have a live version and a dev version of the site. The live version has been rolled back to Woo-RFQ 1.6.7, the dev version is 1.7.3
Both versions have the same Woo-RFQ settings. Checkout Option is set to RFQ, and the only other setting that is checked is ‘Show Link To RFQ Cart in the single product description’
Here’s the source HTML for the ‘cart_totals’ div on the cart page in version 1.7.3
<div class=”cart_totals “>
<h2>Cart Totals</h2>
<table cellspacing=”0″ class=”shop_table shop_table_responsive”>
<tbody><tr class=”cart-subtotal”>
<th>Subtotal</th>
<td data-title=”Subtotal”></td>
</tr>
<tr class=”order-total”>
<th>Total</th>
<td data-title=”Total”></td>
</tr>
</tbody></table>
<div class=”wc-proceed-to-checkout”>
Send the RFQ
</div>
</div>
And here’s the same div in version 1.6.7:-
<div class=”cart_totals “>
<table cellspacing=”0″>
<tbody>
<tr class=”order-total”>
<td></td>
</tr>
</tbody>
</table>
<div class=”wc-proceed-to-checkout”>
Send the RFQ
</div>
</div>
Here’s the source HTML for the itemprop=”offers” div on the product page in version 1.7.3:-
<div itemprop=”offers” itemscope=”” itemtype=”https://schema.org/Offer”>
<p class=”price”>0</p>
<meta itemprop=”price” content=”0″>
<meta itemprop=”priceCurrency” content=”GBP”>
<link itemprop=”availability” href=”https://schema.org/InStock”>
</div>
Here’s the same div in version 1.6.7
<div itemprop=”offers” itemscope=”” itemtype=”https://schema.org/Offer”>
<link itemprop=”availability” href=”https://schema.org/InStock”>
</div>
Also, prices on the single product page are showing up as 0 in version 1.7.3 if ‘Always Show Prices With RFQ Checkout’ is unchecked. If ‘Always Show Prices With RFQ Checkout’ is checked prices are shown correctly.
Hope that helps.