creativeworldstudio
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Upcoming Events] Meetup.com iCal feedHi Amapola,
Did you get anywhere with meetup.com and connecting the iCal feed into WordPress? I’m looking at doing the same and would appreciate any tips.
Thanks,
Leon.
Forum: Plugins
In reply to: [Event Calendar] Posting to a specific category?Yes, I also am trying to do this too…
In our install we have for example a list of rock band events that are displayed on the calendar. we also add another category to the event (called the bands name) and on the bands name page I would like to list only upcoming events for that band.
@buskerdog – What was the old thread? Can you post the link please.
Is it possible to tell Event Calendar to only pull upcoming events from ie Category id = 12 ?
Thanks, Leon.
Forum: Plugins
In reply to: [Plugin: Slickr Gallery] Slickr: A little work but well worth the downloadhttp://www.flickr.com/services/api/keys/apply/ – Get your Flickr API/Secret keys here.
You can’t make it up.
It can be used to connect your plugins/wp install to Flickr 🙂 (in a nutshell)
Forum: Plugins
In reply to: [Plugin: Page Lists Plus] Compatibility with WP2.7Thanks Tim!
And kudos for mentioning the best way to contact you re: bug reports… I must have overlooked the link. 🙂
Forum: Plugins
In reply to: [Plugin: Add Local Avatar] Great plugin!!Hi Lilego –
Hmm.. I’m not experiencing this issue, but I am using PNG image file types although I don’t think this would effect the issue you’re describing.
I’m not able to help code wise as that’s not my field (sorry) – but I noticed a new version has just been released for this plugin – maybe try that?
Leon.
Forum: Plugins
In reply to: [Plugin: Page Lists Plus] Compatibility with WP2.7Maybe I spoke to soon =P
I just found a small bug. If I use the URL redirect option, it is added to all of the other links also. ie:
BEFORE:
Nav Menu – Link
Page A – /page-a/
Page B – /page-b/
Page C – /page-c/
Page D – /page-d/Then I add URL redirect option on Page B to /foo/
AFTER:
Nav Menu – Link
Page A – /foo//page-a/
Page B – /foo/
Page C – /foo//page-c/
Page D – /foo//page-d/The links actually still work but you can see something isn’t right. I hope I’ve explained this bug ok?
Cheers.
Forum: Requests and Feedback
In reply to: [Plugin: All in One SEO Pack] Version History Documentationok, so now version 1.4.6.16 is out and still no news on what’s being changed, added or updated (or removed?) for each release. Please try and keep this up to date as most users will find it invaluable.
Forum: Plugins
In reply to: [Plugin: WP_Multilingual] 2.1 Wp_MultilingualHi Butuzov,
I’m checking in to see how you’re going with WPML? I downloaded the 2.1beta today and tried it on WP2.7.. I got this error:
Fatal error: Call to undefined function: str_ireplace() in /mydomain/wp-content/plugins/wp-multilingual/multilingual.php on line 2656
I also have “Please select license for WP_MUltilingual working” at the top of each page in the backend. There’s a link on the word license but clicking it gives you the same error as mentioned above.
I really wanted it to work but doesn’t look like my lucky day … Cheers, Leon.
Forum: Alpha/Beta/RC
In reply to: FAQ-Tastic Lite Not Working in 2.7??Your tips have gotten FAQ-Tastic working for me on wp2.7 – Thank you, thank you, thank you!!!! 🙂
Forum: Plugins
In reply to: [Plugin: Micro Anywhere] Buttons do not display to add Microformat dataHi Alex,
I’ve checked in Firefox 3 and Safari 3 and still no buttons 🙁 What browser are you using?
I can also confirm that I don’t have any ‘advanced’ plugins for the WYSIWYG editor. I’ve got 2 plugins enabled that also display buttons in the WYSIWYG editor (Kimili Flash Embed and cforms) and both of these display their own button.
Did you have the plugin running on wp2.5 first and then upgrade through to wp2.7? I’m just wondering if there’s a link between fresh installs of Micro Anywhere not working on wp2.6+, and Micro Anywhere working on wp2.5?
Forum: Alpha/Beta/RC
In reply to: FAQ-Tastic Lite Not Working in 2.7??I’m in the same boat as you guys. I’d love to see FAQ-Tastic made compatible with wordpress 2.7 (even if I had to pay for it). It is simply the best plugin to manage FAQ’s on a wordpress blog and I don’t know where I’d be without it..
@altstatten – Keep us posted as to know how you go with updating the current FAQ-Tastic plugin or if you build another similar from scratch. 🙂
Forum: Fixing WordPress
In reply to: ‘Previous entries’ gives 404Arhhh.. I upgraded my blog 2 weeks ago and thought this bug had been fixed. Silly me for assuming as today I notice that my pagination hasn’t been working.
I’m disappointed to see this major bug didn’t get addressed in 2.6 and 2.7 (after it was discovered in 2.3 / 2.5 !) – Fingers crossed it can be sorted in 2.8.
(btw- the original fix still solves the issue)
Forum: Plugins
In reply to: [Plugin: WP_Multilingual] 2.1 Wp_MultilingualHi Butuzov,
I’m really looking forward to this plugin! One thing I hope you’re able to include is a hook into the meta keywords and description fields… I think this is really important – Ie, you translate a page from English to German, so keywords should also be changeable to German.
Can you tell me if this will be covered in WP_Multilingual 2+ ?
Thanks,
Leon.
Forum: Plugins
In reply to: qtranslate and meta how to translate META too?This is important and I would love to see this feature added to qTranslate 🙂
Forum: Fixing WordPress
In reply to: Custom Next/Previous links on postsI think I’ve managed to solve this myself – using this code:
<?php $prev_post = get_previous_post(); if($prev_post) { $prev_title = strip_tags(str_replace('"', '', $prev_post->post_title)); echo "\t" . '<a rel="prev" href="' . get_permalink($prev_post->ID) . '" title="' . $prev_title. '" class=" ">« Previous post<br /><strong>"'. $prev_title . '"</strong></a>' . "\n"; } $next_post = get_next_post(); if($next_post) { $next_title = strip_tags(str_replace('"', '', $next_post->post_title)); echo "\t" . '<a rel="next" href="' . get_permalink($next_post->ID) . '" title="' . $next_title. '" class=" ">Next post »<br /><strong>"'. $next_title . '"</strong></a>' . "\n"; } ?>This is working for me currently so I’ll mark this post as Solved, but if anyone has a better method, please let me know/make a post here.
Cheers.