• Resolved erbenda

    (@hellsbrigade)


    Buongiorno vorrei inserire un pulsante su ogni prodotto che renda il prodotto in pdf scaricabile nello specifico dovrebbe generare un pdf del prodotto riportando descrizione prezzo e foto in modo che il cliente possa scaricare il pdf per verificarlo anche off line qualcuno conosce un plugin per fare questo? grazie per l’aiuto

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi @hellsbrigade

    Thanks for reaching out!

    I would like to insert a button on each product that makes the product in pdf downloadable specifically it should generate a pdf of the product showing price description and photo so that the customer can download the pdf to check it even off line does anyone know a plugin to do this? thanks for the help

    We appreciate your interest in enhancing your online store’s functionality with a PDF download button for each product.

    The simplest way to do is by enabling the Print button under Tools > Marketing > Sharing Buttons:

    If this is not enabled on your end, please click Edit sharing buttons and enable the Print button and click Save Changes.

    Here’s the output on the single product page. Of course, you can disable the other Sharing buttons on your end too.

    Clicking the Print button will display this window:

    In addition, you can also check the WooCommerce Store Catalog PDF Download extension that offers your customers a PDF download of your product catalog, generated by WooCommerce.

    Did you know that if you want to try our products, it comes with a 30-day refund policy? If the product doesn’t work the way you need it or you think another product would work better, we are more than happy to offer a full refund. You can read more about our refund policy on our website here.

    Hope this helps!

    Thread Starter erbenda

    (@hellsbrigade)

    <font _mstmutation=”1″></font>non capisco questa funzione non è presente nella sezione probabilmente sbaglio io il percorso ma stiamo parlando della scheda MARKETING in woocommerce? ” <font _mstmutation=”1″ _msttexthash=”1893060″ _msthash=”205″>Il modo più semplice per farlo è abilitare il pulsante </font><strong _msttexthash=”76284″ _msthash=”206″>Stampa<font _mstmutation=”1″ _msttexthash=”20995″ _msthash=”207″> in </font><strong _msttexthash=”1584570″ _msthash=”208″>Strumenti > pulsanti di marketing > condivisione<font _mstmutation=”1″ _msttexthash=”5278″ _msthash=”209″>:</font>”

    Hi,

    I think that @xue28 is referring to the Marketing menu under Wp-Admin > tools > Marketing. Is this visible on your end?

    If not, please check this similar thread that includes a work-around.

    I hope this helps.

    Plugin Support Gabriel – a11n

    (@gabrielfuentes)

    We haven’t heard back from you in a while, so I’m going to mark this as resolved – we’ll be here if and/or when you are ready to continue.

    Thread Starter erbenda

    (@hellsbrigade)

    questa funzione non è visibile https://snipboard.io/tG7pVl.jpg come mai? scusate la mia assenza ma ho avuto problemi di compatibilità sul sito

    Saif

    (@babylon1999)

    Hello @hellsbrigade,

    This function is not visible https://snipboard.io/tG7pVl.jpg why is that? Sorry for my absence but I had compatibility issues on the site.

    Sorry for the confusion, this button is only available on WordPress.com sites.

    You can create a custom button to achieve the same result using WooCommerce single product page hooks.

    function custom_product_print_button() {
            echo '<div class="custom-print-button">';
            echo '<button id="custom-print-btn">Print</button>';
            echo '</div>';
            echo '<script>
                    jQuery(document).ready(function ($) {
                        $("#custom-print-btn").on("click", function () {
                            window.print();
                        });
                    });
                  </script>';
        }
    add_action('woocommerce_product_meta_end', 'custom_product_print_button');
    

    You can add the snippet using a plugin like Code Snippets.


    Link to image: https://d.pr/i/V7cxcj


    Hope this helps!

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘plugin scheda prodotto’ is closed to new replies.