• Resolved olliekav

    (@olliekav)


    Is it possible to add the button to a custom meta box on the post edit page to generate the PDF?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author fkrauthan

    (@fkrauthan)

    Hey can you explain a bit more what you are trying todo?

    Thread Starter olliekav

    (@olliekav)

    I actually got this working, so no problem. If anyone else wants to do this you can add this in your functions file…

    function mpdf_meta_box(){
      add_meta_box('generate-pdf-action', 'PDF', 'mpdf_meta_box_action', 'plan', 'side', 'low');
    }
    add_action('add_meta_boxes', 'mpdf_meta_box');
    
    function mpdf_meta_box_action(){
      if(function_exists('mpdf_pdfbutton')) mpdf_pdfbutton(true, 'Generate plan PDF');  
    }

    I had one more query, how do you get the PDF to auto download?

    Plugin Author fkrauthan

    (@fkrauthan)

    Great ??

    Thread Starter olliekav

    (@olliekav)

    Just one more query I had above, how do you get the PDF to auto download?

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Generate PDF from admin’ is closed to new replies.