• Resolved diamanta29

    (@diamanta29)


    Dear WpOvernight Team,

    so i have my current layout like my link https://snipboard.io/8Hfs36.jpg
    Is it possible to display SKU and meta products (color/ size) in one line so that i can save paper when printing.

    If possible i would also like to reduce the line height, i tried using css
    body { font-size: 8pt !important; line-height:8px; }, but it also affect the shipping address on the top. I only want the line-height reduce only for the product list.

    Regards

Viewing 1 replies (of 1 total)
  • Plugin Contributor Yordan Soares

    (@yordansoares)

    Hi @diamanta29,

    Try adding this code snippet to your site:

    /**
     * Show item meta side by side, instead of on a new line each
     */
    add_action( 'wpo_wcpdf_custom_styles', function ( $document_type, $document ) {
    	?>
    	.item-name {
    		display: block;
    	}
    	.wc-item-meta, .wc-item-meta li, dl.meta {
    		display: inline-block;
    	}
    	<?php
    }, 10, 2 );

    If you haven’t worked with code snippets (actions/filters) or functions.php before, read this guide: How to use filters

Viewing 1 replies (of 1 total)
  • The topic ‘Make meta product and SKU in one line’ is closed to new replies.