Liam Gladdy
Forum Replies Created
-
Hey Tim,
Yup! This is correct. We made some changes to the build system since the last release.
Cheers,
LiamForum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Installation issueHey fashionandmash,
I’m really sorry about this, and the delay in replying. I only just figured out how to turn on email notifications for posts here.
I’m not too sure what happened here, because WordPress is supposed to not allow fatal errors like this to take down your site, and I do some checks to see if that OAuth class is already defined by another plugin, but clearly something went very wrong in this case.
I’ll boost the defence against this kind of thing in the next release.
Thanks!
Forum: Plugins
In reply to: [Dominant Color] getting results to useHey kc,
Sorry for the delay. What do you get if you:
var_dump( get_post_meta( $post->ID, 'dominant_color_hex', true ) );Feel free to email me – liam@gladdy.co.uk and we’ll get this sorted if you still need help!
Forum: Plugins
In reply to: [Dominant Color] Calculate Now!2.0.1 is released! Sorry about this. Not sure how I didn’t notice it before!
Forum: Plugins
In reply to: [Dominant Color] Use register_uninstall_hook() to delete values from databaseHey tyrann0us,
Fixed that bug. Will look into the uninstall hook for the next release too!
Thanks!
LiamForum: Plugins
In reply to: [Dominant Color] Calculate Now!Ah, this must be some weird plugin conflict.
I’ll release 2.0.1 now with this fix in! Thanks for the heads up, so sorry for not noticing this thread for so long!
Forum: Plugins
In reply to: [Dominant Color] Showing the resultsHey Blitz,
Sorry again for being awful at replying here – it never emails me to let me know when people ask questions!
Feel free to email at liam@gladdy.co.uk in reply rather than here and we’ll get you going!
What’s outputted in the dom there? That code should be fine, so long as $post_id is set correctly?
Forum: Plugins
In reply to: [Dominant Color] Showing the resultsHey!
Sorry for the delay. I totally missed this post and these questions.
You should be able to use: get_post_meta($post->ID, ‘color_palette_rgb’); or color_palette_hex
I could add a shortcode, but what would you want a shortcode to output?
Forum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Check for existing classesVersion 2.2 adds proper compatibility with OAuth or TwitterOAuth being included by another plugin, or built into PHP/included by PECL.
Forum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Authorization ErrorAh, dammit!
I forgot we used to support that in the early versions!
This is fixed in 2.1.3 – but you should still keep the new syntax!
Thanks for your report 🙂
Forum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Authorization ErrorHey Danny,
If you’re getting a message about authorization, that has to be from twitter directly, so the update shouldn’t be the cause of it. Could you make sure all your keys are set correctly in the admin?
Thanks,
LiamForum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Empty Twitter feedIt is super weird! Maybe different PHP versions with different behaviour of constants?
Thanks 🙂
Forum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Empty Twitter feedDid you update to this mornings release (2.1.2)?
I notice you’re using: $tweets = getTweets(3, billy_dallimore); – The string isn’t a string there, it’s a constant? It should be $tweets = getTweets(3, ‘billy_dallimore’);
Though, as of 2.1 this morning, you should write it as:
$tweets = getTweets(‘billy_dallimore’, 3);
The old way still works, but this is much more sensical 🙂
Forum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Empty Twitter FeedHey Jammy,
Sorry about that. We should detect this better too! If you want to submit your code to the plugin, you can do that on github! https://github.com/stormuk/storm-twitter-for-wordpress
Forum: Plugins
In reply to: [oAuth Twitter Feed for Developers] Please fix the array errorAs per your other post, this should be fixed in the new release. If not, please provide more debug information 🙂