Title: bartleriche's Replies | WordPress.org

---

# bartleriche

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

 *   [Profile](https://wordpress.org/support/users/bartleriche/)
 *   [Topics Started](https://wordpress.org/support/users/bartleriche/topics/)
 *   [Replies Created](https://wordpress.org/support/users/bartleriche/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/bartleriche/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/bartleriche/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/bartleriche/engagements/)
 *   [Favorites](https://wordpress.org/support/users/bartleriche/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: [[Mailchimp List Subscribe Form] Error during connect](https://wordpress.org/support/topic/error-during-connect/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/error-during-connect/#post-4675937)
 * Hi!
 * Thanks for helping me out here, right now I’ve asked my hosting company to verify
   that I can connect to those url’s. Reinstalling and removing the social proxy
   thing, didn’t work so I really think its a hosting problem. I’ll get back in 
   touch soon as I know more.
 * Bart
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mailchimp List Subscribe Form] Error during connect](https://wordpress.org/support/topic/error-during-connect/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/error-during-connect/#post-4675875)
 * Hi!
 * I’m using version 1.4.1 of the plugin with WordPress 3.8.1.
 * The error doesn’t provide much more information, this is really all I get:
 *     ```
       error!
   
       POST to http://xxxxxxxxx.nl/index.php?mcsf_action=authorized&salt=xxxxxxxxx&user_id=1 failed: couldn't connect to host
       ```
   
 * Its just a blank popup with this error text in there. I checked the console >
   network tab and this tells me that this error is just the answer response from
   the sopreso/mailchimp server. So the login is succesfull I suppose but the connection
   with my server somehow goes wrong. Thanks for any help here!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Incorrect date list order with query_posts](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [13 years ago](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/#post-4016214)
 * Senff, you just made my day. That did the trick! Thanks so much!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Incorrect date list order with query_posts](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [13 years ago](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/#post-4016188)
 * Thanks a lot Josh! Anyone else who know what the cause of this bug might be?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Incorrect date list order with query_posts](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [13 years ago](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/#post-4016178)
 * So I refined my code, ‘orderby’ => ‘meta_value_num’,: should work better for 
   numbers… Still doesn’t work right though.. I still get the incorrect order :/
 *     ```
       <?php
       query_posts( array (
       	'post_type' => 'agenda_item',
       	'meta_key' => more_fields("agenda-datum"),
       	'orderby' => 'meta_value_num',
       	'order' => 'ASC'
       ) );
   
       while ( have_posts() ) : the_post();
       	echo get_post_meta( $post->ID, 'agenda-datum', true);
       endwhile;
   
       wp_reset_query();
       ?>
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Incorrect date list order with query_posts](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [13 years ago](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/#post-4016175)
 * I’m sorry Josh, I don’t get your question. Can you be a little more specific?
   Thanks!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Incorrect date list order with query_posts](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [13 years ago](https://wordpress.org/support/topic/incorrect-date-list-order-with-query_posts/#post-4016172)
 * Hi Josh!
 * Thanks for your help, but when I gave your suggestion a try it didn’t change 
   anything. Still the same problem…
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Order by custom field date](https://wordpress.org/support/topic/order-by-custom-field-date/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [13 years ago](https://wordpress.org/support/topic/order-by-custom-field-date/#post-4013127)
 * Yes! Christian1012 you sir are a gentlemen, with your hint I got it to work. 
   I ended up storing the dates in the database the way you said, and it worked 
   fine. Thanks a lot!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Order by custom field date](https://wordpress.org/support/topic/order-by-custom-field-date/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [13 years ago](https://wordpress.org/support/topic/order-by-custom-field-date/#post-4012978)
 * With my first try I got this:
    13-3-2014 1-12-2014 13-8-2013 1-12-2013
 * With your hint I got this:
    13-3-2014 1-12-2014 1-12-2013 13-8-2013
 * While I want to get this:
    1-12-2014 13-3-2014 1-12-2013 13-8-2013
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Tweet Fader] Failed to open stream](https://wordpress.org/support/topic/failed-to-open-stream-21/)
 *  Thread Starter [bartleriche](https://wordpress.org/support/users/bartleriche/)
 * (@bartleriche)
 * [13 years ago](https://wordpress.org/support/topic/failed-to-open-stream-21/#post-3930402)
 * Hi Ryan,
 * Thanks for your answer but I already got the functionality to work with another
   plugin: [https://github.com/pixel-industry/TweetScroll—jQuery-plugin](https://github.com/pixel-industry/TweetScroll—jQuery-plugin)
 * Bart

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