Gustavo Bordoni
Forum Replies Created
-
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] Error in send mailHi 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
In reply to: [MailPoet Newsletters (Previous)] newsletters archive pageHi 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
In reply to: [MailPoet Newsletters (Previous)] Icon font for WordPress 3.8!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
In reply to: [MailPoet Newsletters (Previous)] Icon font for WordPress 3.8!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.
https://melchoyce.github.io/dashicons/
The issue that was closed not so long ago.
Forum: Fixing WordPress
In reply to: Empty Archives Returning 404Hi 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.
Cya,
Forum: Fixing WordPress
In reply to: Need to get attachment ID by Image URLVery good Idea Robcolburn,
I’ve just forgot to prepare the data, my fault!
But thanks.
Forum: Fixing WordPress
In reply to: Need to get attachment ID by Image URLHi 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,
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:
Forum: Requests and Feedback
In reply to: Potential www.remarpro.com Improvement ProjectsI really liked all the improvements, this will help the community to grown alot.
Forum: Requests and Feedback
In reply to: Version 3.0 FeaturesI 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…