• great plugin, works with TM Extra product options!!! My suggestion if you want the PDF button, additionally in checkout, not only on cart page, paste this code into your functions.php:

    function wc_cart_pdf_button_checkout() { if ( WC()->cart->is_empty() ) { return; } ?> <a href=”<?php echo esc_url( wp_nonce_url( add_query_arg( array( ‘cart-pdf’ => ‘1’ ), wc_get_cart_url() ), ‘cart-pdf’ ) ); ?>” class=”cart- pdf-button button” target=”_blank”> <?php echo esc_html( get_option( ‘wc_cart_pdf_button_label’, __( ‘Download Cart as PDF’, ‘wc-cart-pdf’ ) ) ); ?></a><?php} add_action( ‘woocommerce_review_order_before_submit’, ‘wc_cart_pdf_button_checkout’ );

  • The topic ‘Great’ is closed to new replies.