Gnuboss
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Curate Home Page ContentHi Jefflin,
This is not related to the thread, but I don;t know how else to get in touch.
Interested in doing some more WordPress Widget dev similar to what you guys did for BB?
Regards,
Bronson.Forum: Fixing WordPress
In reply to: [Plugin: Twitter Tools] URL not made tinyWith the latest version I was having the same problem. Everything worked perfectly, but Twitter-Tools was not posting my links when sending through tags and post titles.
After some hunting I spotted the function in the main plugin file that posts the updates to Twitter.
I changed this line from:
$data = apply_filters(‘aktt_do_tweet_post’, $data, $tweet); // return false here to not make a blog post
to: (I added the $url part at the end)
$data = apply_filters(‘aktt_do_tweet_post’, $data, $tweet, $url); // return false here to not make a blog post
It all seems to be working 100% now finally, yay!
Forum: Plugins
In reply to: Twitter Tools Daily Archive and Hashtag SortingI use lifestream plugin on my personal WordPess blog and it does a daily digest (I don’t remember offhand if it’s tracking hastags…) – you can see the activity on my front page and the digest via the category link I posted.
Maybe you can jimmy something using Yahoo Pipes and feed it into a plugin like wp-o-matic -> done it as an experiment to splice several feeds together and then drip feed them into WP blogs.
It takes a bit of cleaning up to get it into showroom condition, but the results are promising.
Let me knwo if I should perhaps put a post together about this and how far I managed to get?