Title: duceduc's Replies | WordPress.org

---

# duceduc

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailtrap for WordPress] Notice Error message](https://wordpress.org/support/topic/notice-error-message-2/)
 *  Thread Starter [duceduc](https://wordpress.org/support/users/duceduc/)
 * (@duceduc)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/notice-error-message-2/#post-10260126)
 * I am not sure if this is the correct way to fix the notice message. I have changed
   the following in ‘plugins/mailtrap-for-wp/mailtrap-for-wp.php’, line 71
 * from this:
    `$email_sent == null;` to this: `$email_sent = '';`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP All Import – Drag & Drop Import for CSV, XML, Excel & Google Sheets] What can i do for delete products no in the list?](https://wordpress.org/support/topic/what-can-i-do-for-delete-products-no-in-the-list/)
 *  [duceduc](https://wordpress.org/support/users/duceduc/)
 * (@duceduc)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/what-can-i-do-for-delete-products-no-in-the-list/#post-10245146)
 * From your screenshot, yours look different than mine. Did you arrive from the
   admin dashboard by this way?
    ‘All import > Manage Imports > Import Settings 
   > Record Matching’
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP All Import – Drag & Drop Import for CSV, XML, Excel & Google Sheets] error in url import](https://wordpress.org/support/topic/error-in-url-import/)
 *  [duceduc](https://wordpress.org/support/users/duceduc/)
 * (@duceduc)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/error-in-url-import/#post-10245119)
 * I don’t have an answer to your issue, but I do like how you added those orange
   check marks for the description in your site. Was it done through WP All Import
   content and title section?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP All Import – Drag & Drop Import for CSV, XML, Excel & Google Sheets] Date Convert to Text](https://wordpress.org/support/topic/date-convert-to-text/)
 *  [duceduc](https://wordpress.org/support/users/duceduc/)
 * (@duceduc)
 * [8 years, 2 months ago](https://wordpress.org/support/topic/date-convert-to-text/#post-10245105)
 * Here is one you can use. This will output ‘April 2018’
 * You will need to add this to your wp all import function editor.
 *     ```
       function formatDate($str) {
         $yr = preg_replace('#\/[^/]*$#', '', $str);
         $month = preg_replace('/^.*\/\s*/', '', $str);
         $mth = 'Invalid Month';
   
         if($month >= 1 && $month <= 12){
           $mth = date("F", strtotime("2001-" . $month . "-01"));
         }
         return $mth.' '.$yr;
       }
       ```
   
 * Call it as such.
    `[formatDate({yourXmlDate[1]})]`

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