Title: jacof's Replies | WordPress.org

---

# jacof

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpCJ Chimp] [Plugin: wpCJ Chimp] Unable to retrieve mailing lists from MailCHimp](https://wordpress.org/support/topic/plugin-wpcj-chimp-unable-to-retrieve-mailing-lists-from-mailchimp/)
 *  [jacof](https://wordpress.org/support/users/jacof/)
 * (@jacof)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-wpcj-chimp-unable-to-retrieve-mailing-lists-from-mailchimp/#post-1925609)
 * Note that you have to reload the page to see the list as its not auto populated
   with JS.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[wpCJ Chimp] [Plugin: wpCJ Chimp] Unable to retrieve mailing lists from MailCHimp](https://wordpress.org/support/topic/plugin-wpcj-chimp-unable-to-retrieve-mailing-lists-from-mailchimp/)
 *  [jacof](https://wordpress.org/support/users/jacof/)
 * (@jacof)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-wpcj-chimp-unable-to-retrieve-mailing-lists-from-mailchimp/#post-1925608)
 * I could resolve this by modifying
    `$lists_array = $MCHandler->lists($apikey);`
   to `$lists_array = $MCHandler->lists();`
 * in wpcj-chimp/index.php
    This is the correct way according to the mailChimp API
   wrappers, btw.
 * You can check if there’s an error by using
 *     ```
       if ($MCHandler->errorCode){
       	echo "Unable to load lists()!";
       	echo "\n\tCode=".$MCHandler->errorCode;
       	echo "\n\tMsg=".$MCHandler->errorMessage."\n";
       }
       ```
   
 * Which in my case allowed me to see that the Datacenter being used was the wrong
   one (the -us2 or -us1 after your API key). So I headed to wpcj-chimp/MCAPI.class.
   php and I just changed in line 42:
 * `$this->apiUrl = parse_url("http://api.mailchimp.com/" . $this->version . "/?
   output=php");`
 * To
 * `$this->apiUrl = parse_url("http://us2.api.mailchimp.com/" . $this->version ."/?
   output=php");`
 * You can just put your datacenter before the .api there.
 * Note that I don’t think this is the proper way to define your datacenter when
   using the mailChimp API, so you’re welcome to look for a better method that doesn’t
   alter the MCAPI.class.php.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Thumbnails cropping on the center by default?](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/)
 *  Thread Starter [jacof](https://wordpress.org/support/users/jacof/)
 * (@jacof)
 * [15 years, 4 months ago](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/#post-1826057)
 * The ticket has been assigned.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Thumbnails cropping on the center by default?](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/)
 *  Thread Starter [jacof](https://wordpress.org/support/users/jacof/)
 * (@jacof)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/#post-1825988)
 * [http://core.trac.wordpress.org/ticket/15989](http://core.trac.wordpress.org/ticket/15989)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Thumbnails cropping on the center by default?](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/)
 *  Thread Starter [jacof](https://wordpress.org/support/users/jacof/)
 * (@jacof)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/#post-1825985)
 * I can’t believe no one will answer this. This is a serious mistake in WordPress’
   coding and planification.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Thumbnails cropping on the center by default?](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/)
 *  Thread Starter [jacof](https://wordpress.org/support/users/jacof/)
 * (@jacof)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/#post-1825936)
 * **Update:** Quick fix -Not user-friendly: Regenerating thumbnails with “Regenerate
   Post Thumbnails” plugin after modifying it’s dimensions in the Image Editor gives
   de correct thumbnails, but results in a overload of files in the server. (i.e.
   all of the thumbnails for the original + original + all of the thumbnails for
   the resized + resized). Maybe a modification of this plugin to delete prior thumbnails
   from fs as well as from db would make a temporary fix, given there’s no point
   in saving “backup” copies of the thumbnails.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Thumbnails cropping on the center by default?](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/)
 *  Thread Starter [jacof](https://wordpress.org/support/users/jacof/)
 * (@jacof)
 * [15 years, 5 months ago](https://wordpress.org/support/topic/thumbnails-cropping-on-the-center-by-default/#post-1825909)
 * Related: [http://wordpress.org/support/topic/image-editor-not-altering-post-thumbnails?replies=4](http://wordpress.org/support/topic/image-editor-not-altering-post-thumbnails?replies=4)

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