Hello aphador,
Ok, I’ll do some test in order to check compatibility with WPeMatico and I’ll add on my todo if it doesn’t work anymore.
Hi @aphador !
See this post:
https://wordpress.org/support/topic/doesnt-work-with-wpematico/#post-11108214
I am using this plugins with wpematico on about 70 installations.
I should point out that Estefan ( @etruel ) has the
add-on for wpe (‘WPeMatico Thumbnail Scratcher’) that is a direct rip-off of this plugin (Magic Post Thumbnail; see thumbshots on his website) I cannot begin to express my angst that Estefan is so unethical as to do this to @mcurly ! Quite frankly, if I had it to do over again, I would use something else besides WPeMatico. I used to test some plugins for him (the caching plugin that he sells, for one) and I have offered, repeatedly, to fix his pigeon English (for free), but he’s kind of let things go to his head since turning his plugin into a full-time business, and can no longer bother to personally respond to eMails.
I did “bite the bullet and buy his rip off” ( @mcurly if you want a copy to add to YOUR paid version I will get you a copy.)
Just my opinion. It just makes me mad when someone rips off something (like Matt M. did with the BB Press fork I wrote and I foolishly never said anything at the time) without attribution. I use to author several free WP plugins (years and years ago), and when I found sites like cnn.com had ripped them off and removed the attribution, I stopped. I don’t particularly care for the gang at Automattttttttic anymore. They, too have let things go to their collective heads.
Sorry for the rant. I wouldn’t be surprised if one of the Mods from said Automattttttttic removes it. No free speech allowed here!
-Brian
Hi, @brianbrown
thanks for your answer. And for the unbelievable history of WPeMatico author’s behavior.
But i’m quite noob at WP, so, please, enlight me, where should I add this?
add_action(‘save_post’, ‘mpc_run_on_save’);
function mpc_run_on_save($post_ID) {
$urlg = ‘https://’.$_SERVER[‘SERVER_NAME’].’wp-admin/admin.php?page=magic_post_thumbnail%2Finc%2Fadmin%2Fmain.php&ids=’.$post_ID;
//$urlg = ‘https://’.$_SERVER[‘SERVER_NAME’].’/wp-admin/admin.php?page=magic_post_thumbnail/inc/admin/main.php&ids=’.$post_ID;
//$urlg = ‘https://’.$_SERVER[“HTTP_HOST”].’/wp-admin/admin.php?page=magic_post_thumbnail/inc/admin/main.php&ids=’.$post_ID;
$curl_handle=curl_init();
curl_setopt($curl_handle,CURLOPT_URL,$urlg);
curl_setopt($curl_handle,CURLOPT_CONNECTTIMEOUT,10);
curl_setopt($curl_handle,CURLOPT_RETURNTRANSFER,1);
$buffer = curl_exec($curl_handle);
curl_close($curl_handle);
}
Thanks again!
I made a plugin from the above code, however, since he ripped the code off, I feel no remorse in sharing it with you and @mcurly (maybe @mcurly can incorporate it into HIS paid plugin).
See https://www.brianbrown.net/sw/
Have fun!
-Brian
@brianbrown “This page is currently unavailable” is all get when clicking on your link =/
Hello !
@brianbrown
Unfortunatelly, I’m not surprised anymore by anything. I didn’t know about Matt and bbpress !
@aphador
I’ve not tested deeply but I just integrated the Brian code into my plugin (just for test), and here is the plugin. Just remove the current MPT plugin and install this one :
https://magic-post-thumbnail.com/2.4.7-special/magic-post-thumbnail.zip
Tell me if it works for you, and I’ll add more properly into the next free version
(but no way I integrate a contributor code into the paid version haha).
@mcurly i just tested it, and it’s working flawlessly. Thanks!!!
Good to know ! So I’ll add it on the 2.4.8 as soon as I can. Thanks.