To remove the shortcode, please use 'bwsplgns_pdf_print_remove_shortcodes' hook:
- Go to the plugin settings page;
- Open "Custom Code" tab, mark "Activate custom PHP code." checkbox in the "PHP" section;
- Add the following code (as example):
function pdf_print_remove_shortcodes( $shortcodes_array ) { $shortcodes_array[] = 'bestwebsoft_contact_form'; return $shortcodes_array; } add_filter( 'bwsplgns_pdf_print_remove_shortcodes', 'pdf_print_remove_shortcodes' );
Replace bestwebsoft_contact_form
with your shortcode.