Title: kender's Replies | WordPress.org

---

# kender

  [  ](https://wordpress.org/support/users/kender/)

 *   [Profile](https://wordpress.org/support/users/kender/)
 *   [Topics Started](https://wordpress.org/support/users/kender/topics/)
 *   [Replies Created](https://wordpress.org/support/users/kender/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/kender/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/kender/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/kender/engagements/)
 *   [Favorites](https://wordpress.org/support/users/kender/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 43 total)

1 [2](https://wordpress.org/support/users/kender/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/kender/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/kender/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] New update 7.01 and 7.0.0 creates error in my site](https://wordpress.org/support/topic/new-update-7-01-and-7-0-09-creates-error/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [3 weeks, 1 day ago](https://wordpress.org/support/topic/new-update-7-01-and-7-0-09-creates-error/#post-18888190)
 * [@rapidetech](https://wordpress.org/support/users/rapidetech/) i have nothing
   to do with the plugin, i just found the fix and posted it for those who can… 
   i can suggest if you have a working version do not update until next version 
   comes out (hopefully that will fix it permanently) or disable the plugin to view
   orders — outside of paid help you are pretty much stuck
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Your Site is Experiencing a Technical Issue](https://wordpress.org/support/topic/your-site-is-experiencing-a-technical-issue-155/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [3 weeks, 1 day ago](https://wordpress.org/support/topic/your-site-is-experiencing-a-technical-issue-155/#post-18888136)
 * Replace the beginning of `create_box_content()` with:
 *     ```wp-block-code
       public function create_box_content( $post ) {
       	$order = null;
   
       	if ( $post instanceof WC_Order ) {
       		$order = $post;
       	} elseif ( $post instanceof WP_Post ) {
       		$order = wc_get_order( $post->ID );
       	} elseif ( is_numeric( $post ) ) {
       		$order = wc_get_order( absint( $post ) );
       	}
   
       	if ( ! $order instanceof WC_Order || $order instanceof WC_Order_Refund ) {
       		return;
       	}
   
       	$order_id = $order->get_id();
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] Fatal error](https://wordpress.org/support/topic/fatal-error-4976/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [3 weeks, 1 day ago](https://wordpress.org/support/topic/fatal-error-4976/#post-18888134)
 * a more complete fix here (redundancies and checks added)
 * Replace the beginning of `create_box_content()` with:
 *     ```wp-block-code
       public function create_box_content( $post ) {
       	$order = null;
   
       	if ( $post instanceof WC_Order ) {
       		$order = $post;
       	} elseif ( $post instanceof WP_Post ) {
       		$order = wc_get_order( $post->ID );
       	} elseif ( is_numeric( $post ) ) {
       		$order = wc_get_order( absint( $post ) );
       	}
   
       	if ( ! $order instanceof WC_Order || $order instanceof WC_Order_Refund ) {
       		return;
       	}
   
       	$order_id = $order->get_id();
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] New update 7.01 and 7.0.0 creates error in my site](https://wordpress.org/support/topic/new-update-7-01-and-7-0-09-creates-error/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [3 weeks, 1 day ago](https://wordpress.org/support/topic/new-update-7-01-and-7-0-09-creates-error/#post-18888133)
 * Replace the beginning of `create_box_content()` with:
 *     ```wp-block-code
       public function create_box_content( $post ) {
       	$order = null;
   
       	if ( $post instanceof WC_Order ) {
       		$order = $post;
       	} elseif ( $post instanceof WP_Post ) {
       		$order = wc_get_order( $post->ID );
       	} elseif ( is_numeric( $post ) ) {
       		$order = wc_get_order( absint( $post ) );
       	}
   
       	if ( ! $order instanceof WC_Order || $order instanceof WC_Order_Refund ) {
       		return;
       	}
   
       	$order_id = $order->get_id();
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Send PDF for Contact Form 7] Fatal Error after updating](https://wordpress.org/support/topic/fatal-error-after-updating-23/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [2 months ago](https://wordpress.org/support/topic/fatal-error-after-updating-23/#post-18847006)
 * on this file
   > wp-content/plugins/send-pdf-for-contact-form-7/classes/generate.
   phpchange around line 381 from this
 *     ```wp-block-code
               // On va chercher les noms personnalisé        $meta_tagsname = get_post_meta(esc_html($idForm), '_wp_cf7pdf_customtagsname', true);        // Construction de l'entete        if( isset($meta_fields) ) {
       ```
   
 * to this
 *     ```wp-block-code
               // On va chercher les noms personnalisé        $meta_tagsname = get_post_meta(esc_html($idForm), '_wp_cf7pdf_customtagsname', true);        // SAFETY FIX: ensure it's always an array        if (!is_array($meta_tagsname)) { $meta_tagsname = []; }        // Construction de l'entete        if( isset($meta_fields) ) {
       ```
   
 * that will make it work, hopefully the developer gets on this
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] When will there be a fix for the security flaw?](https://wordpress.org/support/topic/when-will-there-be-a-fix-for-the-security-flaw/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [2 months, 2 weeks ago](https://wordpress.org/support/topic/when-will-there-be-a-fix-for-the-security-flaw/#post-18833636)
 * [@wpmudevsupport13](https://wordpress.org/support/users/wpmudevsupport13/)
 * I am aware, if you see my message I knew i was out of date and mentioned I would
   be updating to see if the message goes away. what i was doing was giving details
   on the only security flaw i was aware of (as the OP did not)
 * Also, the update notification never showed in my admin backend, so it is possible
   that happened for others as well
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Forminator Forms – Contact Form, Payment Form & Custom Form Builder] When will there be a fix for the security flaw?](https://wordpress.org/support/topic/when-will-there-be-a-fix-for-the-security-flaw/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [2 months, 2 weeks ago](https://wordpress.org/support/topic/when-will-there-be-a-fix-for-the-security-flaw/#post-18832419)
 * from Wordfence
    - **Plugin Name: **Forminator
    - **Current Plugin Version: **1.46.2 (wordpress install is not telling me there
      is an update available, i will manually update to current version and see 
      if the notice corrects)
 *  - **Details: **To protect your site from this vulnerability, the safest option
      is to deactivate and completely remove “Forminator” until a patched version
      is available. [Get more information.](https://www.wordfence.com/help/?query=scan-result-plugin-vulnerable)
 *  - **Vulnerability Information: **[https://www.wordfence.com/threat-intel/vulnerabilities/id/2b28ddeb-44f5-4d19-b866-94fc2088ee6d?source=plugin](https://www.wordfence.com/threat-intel/vulnerabilities/id/2b28ddeb-44f5-4d19-b866-94fc2088ee6d?source=plugin)
    - **Vulnerability Severity: **5.3/10.0 (Medium)
 *  -  This reply was modified 2 months, 2 weeks ago by [kender](https://wordpress.org/support/users/kender/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[PDF Forms Filler for CF7] Convert CF7 Multiple to CSV](https://wordpress.org/support/topic/convert-cf7-multiple-to-csv/)
 *  Thread Starter [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [3 months, 4 weeks ago](https://wordpress.org/support/topic/convert-cf7-multiple-to-csv/#post-18787642)
 * I was able to do this with this code block
 *     ```wp-block-code
       // convert cf7 multi to csv for emailadd_filter('wpcf7_posted_data', function($data) {  // List the CF7 field names you want to convert  $fields_to_csv = [    'field-name', // for [select states id:states multi "options"] - enter 'states'  ];  foreach ($fields_to_csv as $field) {    if (!empty($data[$field]) && is_array($data[$field])) {      $data[$field] = implode(', ', $data[$field]);    }  }  return $data;});
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailRoute - Conditional Email Routing For Contact Form 7] Cannot save form](https://wordpress.org/support/topic/cannot-save-form-3/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [11 months, 3 weeks ago](https://wordpress.org/support/topic/cannot-save-form-3/#post-18478823)
 * [@raihan143](https://wordpress.org/support/users/raihan143/)
 * it does save after disabling only this plugin (I am having the same issue)
 * it looks like the problem exists on forms that the conditional routing is not
   set on. so if it is not enabled and you have no options selected on the conditional
   routing tab there is a required field that is not filled in and it prevents the
   form from submitting, because it is behind a different tab the user is not notified
   about the required field (the if drop-down field)
    -  This reply was modified 11 months, 3 weeks ago by [kender](https://wordpress.org/support/users/kender/).
    -  This reply was modified 11 months, 3 weeks ago by [kender](https://wordpress.org/support/users/kender/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Block Spam attempts](https://wordpress.org/support/topic/block-spam-attempts/)
 *  Thread Starter [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/block-spam-attempts/#post-18360028)
 * thanks for the info, I will pass it along to the relevant people
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Save as PDF Plugin by PDFCrowd] pdfcrowd-remove not removing from output](https://wordpress.org/support/topic/pdfcrowd-remove-not-removing-from-output/)
 *  Thread Starter [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/pdfcrowd-remove-not-removing-from-output/#post-18328116)
 * Apologies. when testing after moving to live it worked, I ran more tests and 
   discovered it was caching issue in the beta environment, once I purged the cache
   it seemed to work as desired. Thank you for your rapid responses and attention
   to detail.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Save as PDF Plugin by PDFCrowd] pdfcrowd-remove not removing from output](https://wordpress.org/support/topic/pdfcrowd-remove-not-removing-from-output/)
 *  Thread Starter [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [1 year, 2 months ago](https://wordpress.org/support/topic/pdfcrowd-remove-not-removing-from-output/#post-18327529)
 * if you provide an email i can use for support, i will set up a page on the live
   site for you to review
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[GiveWP - Donation Plugin and Fundraising Platform] Give Plugin Not compatible with php versions from 8.1.27 and above](https://wordpress.org/support/topic/give-plugin-not-compatible-with-php-versions-from-8-1-27-and-above/)
 *  [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [1 year, 8 months ago](https://wordpress.org/support/topic/give-plugin-not-compatible-with-php-versions-from-8-1-27-and-above/page/2/#post-17964828)
 * [@matheusfd](https://wordpress.org/support/users/matheusfd/)
 * can we get an update on when this fix will be made?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Print Invoice & Delivery Notes for WooCommerce] custom order fields no longer accessing order info](https://wordpress.org/support/topic/custom-order-fields-no-longer-accessing-order-info/)
 *  Thread Starter [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [2 years, 6 months ago](https://wordpress.org/support/topic/custom-order-fields-no-longer-accessing-order-info/#post-17145102)
 * done
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Popup Maker - Boost Sales, Conversions, Optins, Subscribers with the Ultimate WP Popup Builder] Integrations issue CF7](https://wordpress.org/support/topic/integrations-issue-cf7/)
 *  Thread Starter [kender](https://wordpress.org/support/users/kender/)
 * (@kender)
 * [3 years, 1 month ago](https://wordpress.org/support/topic/integrations-issue-cf7/#post-16603056)
 * Submitted your support form

Viewing 15 replies - 1 through 15 (of 43 total)

1 [2](https://wordpress.org/support/users/kender/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/kender/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/kender/replies/page/2/?output_format=md)