dalynino
Forum Replies Created
-
PS: I got the support via email, for those of you with the same issue it was because I haven’t updated the extension for premium template. That fixed it.
I have the same issue. I followed the documentation and added the code below to the theme functions.php,
And the Variation description still doesn’t work.add_action( ‘wpo_wcpdf_after_item_meta’, ‘wpo_wcpdf_show_product_variation_description’, 10, 3 );
function wpo_wcpdf_show_product_variation_description ( $template_type, $item, $order ) {
if (empty($item[‘product’])) return;
if (isset( $item[‘variation_id’] ) && $item[‘variation_id’] != 0) {
printf(‘<div class=”product-description”>%s</div>’, $item[‘product’]->get_variation_description() );
}
}Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] CSS for invoice and slipWhere would I add your code;
<span class=”wc_order_field_2725″>[your custom field code]</span>
Besides the Custom Styles under PDF invoices?My customized field is added with a customizer plugin on woocommerce.
I want the woocomerce pdf invoice to have those fields in bigger font size when I print it.
You code (.invoice .wc_order_field_2725 { font-size: 120%; })worded on regular fields.
Not on those customized fields.Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] CSS for invoice and slipYour code worked but not on customized fields.
How do I apply it on customized fields?That’s my code:
.packing-slip .wc_order_field_2725 { font-size: 120%; }.invoice .wc_order_field_2725 { font-size: 120%; }