xdracox
Forum Replies Created
-
ofc, [fe_widget] at html block doesnt show anything 🙁
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] e-mail notifications with woocommercethe answer is in:
/woocommerce/emails/email-order-items.php
// Variation
if ( $item_meta->meta ) {
echo ‘
<small>’ . nl2br( $item_meta->display( true, true ) ) . ‘</small>’;
}it should be changed to:
// Variation
if ( $item_meta->meta ) {
echo ‘
<small>’ . nl2br( $_product->get_attribute( ‘delivery’ ) ) . ‘</small>’;
}BUT
I dont know names of used attributes (above is ‘delivery’). Where I can find it?Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] e-mail notifications with woocommerceP.S. in woocommerce email templates the key string is “email_order_items_table” but its details are from Booking System
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] e-mail notifications with woocommerceHello,
yes I’m using WooCommerce and template is from it but its only layout. I think content e.g. details, discounts etc are from Booking System – WooCommerce doesnt have that.greetings!
Forum: Plugins
In reply to: [Pinpoint Booking System - Version 2] Fixed price or discounts by daysthank you! I need pro version for this?