IILLC on "AJAX Hook Not Responding"
Thanks for the reply and the idea. I tried using a generic die () and it still is giving me troubles. I don't even necessarily need the debug info. I just need this to run the php code to make the db...
View Articlebcworkz on "AJAX Hook Not Responding"
I looked through your code again and think I see the problem. I don't have a lot of experience using JSON in javascript, but I believe I'm correct here. You ajax response handler is trying to use the...
View Articlemetaphorcreations on "[Plugin: Widget Settings Importer/Exporter] Switch from...
I was wondering if you could switch: add_action( 'init', array( 'Widget_Data', 'init' ) ); to add_action( 'widgets_init', array( 'Widget_Data', 'init' ), 20 ); The plugin is working great, but I use...
View Articlemetaphorcreations on "[Plugin: Widget Settings Importer/Exporter] Switch from...
I did some more testing and that didn't always resolve the issue either... so, feel free to discard my post.
View ArticleColin Devroe (Plain) on "How to determine when the_loop is running?"
Hello fellow WordPress hackers. We've run into an interesting issue that I hope someone with deep WordPress insight can help us tackle. We're writing an action that plugs into the_title and the_content...
View Articleesmi on "How to determine when the_loop is running?"
Have you tried using is_page() and is_post_type_archive()? http://codex.wordpress.org/Conditional_Tags
View ArticleColin Devroe (Plain) on "How to determine when the_loop is running?"
esmi: I should have been much more specific, perhaps, sorry. Yes. We already are using is_page() and is_single() to determine whether or not we're on the page or blog post permalink. But, even those...
View Articleesmi on "How to determine when the_loop is running?"
There's also in_the_loop() but I'm not sure how it would work if there was secondary custom loops in a sidebar or footer. Another approach might be seeing if you can grab the current template name and...
View ArticleColin Devroe (Plain) on "How to determine when the_loop is running?"
esmi: Yes. in_the_loop will always return true in these cases.
View Articlejgclarke on "How to determine when the_loop is running?"
@cdevroe - would this help? http://codex.wordpress.org/Function_Reference/is_main_query
View ArticleColin Devroe (Plain) on "How to determine when the_loop is running?"
jgclarke: Thanks so much! This fixes the issue in 90% of the cases we've been able to test against. Good enough! Thanks again.
View Articlekevinpoy on "page not found"
[ Moderator note: title decapped. Please don't do that it's considered rude. ] I've been transfering my codes from local to wordpress. It is about reservations. In local, code is working perfectly but...
View ArticleSebvandenBerg on "[Theme: MesoColumn] Where are the actions defined?"
Hi Richie, I am still tweaking your wonderful Theme, Mesocolumn. Just a quick question: in which file are your actions defined (such as "do_action( 'bp_head_before_title' )", etc.)? I have looked...
View ArticleRichie KS on "[Theme: MesoColumn] Where are the actions defined?"
it is a hook action. nothing hook into yet. for example if you add something like to your custom function function hello_text() { echo 'hello world'; } //here's the hook come in handy...
View ArticleSebvandenBerg on "[Theme: MesoColumn] Where are the actions defined?"
Thanks for your reply, Richie. I do understand how add_action and do_action work. My problem is: WHERE do you define your add_action's? The reason why I need this: I need to modify files such as...
View ArticleRichie KS on "[Theme: MesoColumn] Where are the actions defined?"
there's nothing hook into all the action hook. unlike any wp framework that hook the html into the action_hook. this theme did not so currently there's nothing defined inside any of the do_action()...
View ArticleSebvandenBerg on "[Theme: MesoColumn] Where are the actions defined?"
Thanks again for your quick reply. I am so confused now. If I understand you correctly, you are saying that none of your 'bp_*' actions are defined at the moment. Is that correct? And I could define...
View ArticleRichie KS on "[Theme: MesoColumn] Where are the actions defined?"
yes, i'm affraid you will need to edit them in single.php, they were coded inside single.php template not action hook. maybe try child theme approach.
View Articleverdographics on "[Plugin: NextGEN Gallery] Not a valid AJAX action. 0 images...
After updating to version 2.0.40 I get this message when I try to upload images in a new gallery Not a valid AJAX action 0 images were uploaded http://wordpress.org/plugins/nextgen-gallery/
View Articlephotocrati on "[Plugin: NextGEN Gallery] Not a valid AJAX action. 0 images...
@verdographics - Could you submit a Bug Report (http://www.nextgen-gallery.com/report-bug/) with your site specifics. Please include log in and FTP credentials for your WordPress installation on the...
View Article