Title: Gustavo Bordoni's Replies | WordPress.org

---

# Gustavo Bordoni

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] Error in send mail](https://wordpress.org/support/topic/error-in-send-mail/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/error-in-send-mail/#post-4501535)
 * Hi Sunilubar,
 * Can you provide a little bit more of information on your error, so we can try
   to help you to resolve it?
 * Thanks,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] newsletters archive page](https://wordpress.org/support/topic/newsletters-archive-page/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/newsletters-archive-page/#post-4481935)
 * Hi Karem,
 * As of right now we don’t have a built-in way to do this, but it’s possible to
   do a custom code to it.
 * Should not be hard to be done.
 * By the way, rest assured that we have this feature in our list of needs for next
   versions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] Icon font for WordPress 3.8!](https://wordpress.org/support/topic/icon-font-for-wordpress-38/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/icon-font-for-wordpress-38/#post-4453597)
 * So in the next version we will have a icon that will do the job for us, I mean,
   the email icon.
 * I take note of the idea for the logo, might be a good idea.
 * PS: Closing the Topic, since there will be a solution on next version of WP.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MailPoet Newsletters (Previous)] Icon font for WordPress 3.8!](https://wordpress.org/support/topic/icon-font-for-wordpress-38/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/icon-font-for-wordpress-38/#post-4453573)
 * Hassan,
 * Just so you know, if you check the dashicons project on GitHub you will see a
   Issue that we filed asking for a email icons, that will match not only our project
   but will help on the front end icons for sharing.
 * [http://melchoyce.github.io/dashicons/](http://melchoyce.github.io/dashicons/)
 * The issue that was closed not so long ago.
 * [https://github.com/melchoyce/dashicons/issues/8](https://github.com/melchoyce/dashicons/issues/8)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Empty Archives Returning 404](https://wordpress.org/support/topic/empty-archives-returning-404/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/empty-archives-returning-404/#post-1983880)
 * Hi Guys,
 * This problem is going to be solved in the version 3.2.
 * But if you really need it now you need to change the core as said in [the ticket page](http://core.trac.wordpress.org/ticket/17316).
 * Cya,
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Need to get attachment ID by Image URL](https://wordpress.org/support/topic/need-to-get-attachment-id-by-image-url/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/need-to-get-attachment-id-by-image-url/page/2/#post-1796345)
 * Very good Idea Robcolburn,
 * I’ve just forgot to prepare the data, my fault!
 * But thanks.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Need to get attachment ID by Image URL](https://wordpress.org/support/topic/need-to-get-attachment-id-by-image-url/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/need-to-get-attachment-id-by-image-url/page/2/#post-1796333)
 * Hi Guys,
 * I’ve got an solution that may be usefull, because I’ve got some problems using
   the `GUID` as my search string sometimes I’ve got duplicated content, I don’t
   know why but I got it, so I developed this function to return any Post ID based
   in it’s url:
 *     ```
       function drfw_postID_by_url($url) {
       	global $wpdb;
       	$id = url_to_postid($url);
       	if($id==0) {
       		$fileupload_url = get_option('fileupload_url',null).'/';
       		if (strpos($url,$fileupload_url)!== false) {
       			$url = str_replace($fileupload_url,'',$url);
       			$id = $wpdb->get_var("SELECT wposts.ID FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta WHERE wposts.ID = wpostmeta.post_id AND wpostmeta.meta_key = '_wp_attached_file' AND wpostmeta.meta_value = '$url' AND wposts.post_type = 'attachment'");
       		}
       	}
       	return $id;
       }
       ```
   
 * So drfw is just a prefix im using, if you guys have any problems using this functionlet
   me know so I can improve it.
 * Thanks,
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Migrate Lite - Migration Made Easy] [Plugin: WP Migrate DB] Fatal error: Call to undefined method WP_Migrate_DB::error()](https://wordpress.org/support/topic/plugin-wp-migrate-db-fatal-error-call-to-undefined-method-wp_migrate_dberror/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [15 years, 3 months ago](https://wordpress.org/support/topic/plugin-wp-migrate-db-fatal-error-call-to-undefined-method-wp_migrate_dberror/#post-2061219)
 * I think the developer is using a deprecated error method, so my sugestion is 
   if you know what you are doing in PHP, just change the way the plugin throws 
   errors to the WP_error class:
 * [http://codex.wordpress.org/Function_Reference/WP_Error](http://codex.wordpress.org/Function_Reference/WP_Error)
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [Potential WordPress.org Improvement Projects](https://wordpress.org/support/topic/potential-wordpressorg-improvement-projects/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/potential-wordpressorg-improvement-projects/#post-1553807)
 * I really liked all the improvements, this will help the community to grown alot.
 *   Forum: [Requests and Feedback](https://wordpress.org/support/forum/requests-and-feedback/)
   
   In reply to: [Version 3.0 Features](https://wordpress.org/support/topic/version-30-features/)
 *  [Gustavo Bordoni](https://wordpress.org/support/users/webord/)
 * (@webord)
 * [16 years, 7 months ago](https://wordpress.org/support/topic/version-30-features/page/2/#post-1321143)
 * I would love to see much more of, Custom Fields and Multi-User, in WordPress 
   3.0.
 * But is also important to have enchancements on API of the Media Upload.
 * That’s it.
 * Thanks for the good job done…

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