bartleriche
Forum Replies Created
-
Forum: Plugins
In reply to: [Mailchimp List Subscribe Form] Error during connectHi!
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
In reply to: [Mailchimp List Subscribe Form] Error during connectHi!
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 https://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
In reply to: Incorrect date list order with query_postsSenff, you just made my day. That did the trick! Thanks so much!
Forum: Fixing WordPress
In reply to: Incorrect date list order with query_postsThanks a lot Josh! Anyone else who know what the cause of this bug might be?
Forum: Fixing WordPress
In reply to: Incorrect date list order with query_postsSo 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
In reply to: Incorrect date list order with query_postsI’m sorry Josh, I don’t get your question. Can you be a little more specific? Thanks!
Forum: Fixing WordPress
In reply to: Incorrect date list order with query_postsHi 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
In reply to: Order by custom field dateYes! 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
In reply to: Order by custom field dateWith my first try I got this:
13-3-2014
1-12-2014
13-8-2013
1-12-2013With your hint I got this:
13-3-2014
1-12-2014
1-12-2013
13-8-2013While I want to get this:
1-12-2014
13-3-2014
1-12-2013
13-8-2013Forum: Plugins
In reply to: [Tweet Fader] Failed to open streamHi Ryan,
Thanks for your answer but I already got the functionality to work with another plugin: https://github.com/pixel-industry/TweetScroll—jQuery-plugin
Bart