James Reyes
Forum Replies Created
-
This doesn’t work for me. The email address I enter in the email address field shows up as the From email address in the confirmation email.
I am also interested in how to display the permalink category name in my template.
Larryhir, were you ever able to figure this out?
Forum: Plugins
In reply to: [Author Image] Within a custom select queryAny ideas?
Forum: Plugins
In reply to: Tweet Blender: "No tweets found for"Exact same issue here.
I’m using the shortcode in my template, rather than use a widget. I am passing the query with a variable $twittersearch:
<?php tweet_blender_widget(array( 'unique_div_id' => 'single-twitter-widget', 'sources' => $singleTwitterQuery, 'refresh_rate' => 60, 'tweets_num' => 5, 'view_more_url' => 'http://search.twitter.com/search?q='.$twittersearch, ));?>Any help would be appreciated.
Forum: Themes and Templates
In reply to: More than two multiple loopsI finally got this to work with the help of a friend of mine. Here is the final product. Feedback, of course, is appreciated:
Forum: Themes and Templates
In reply to: More than two multiple loopsYeah no luck, but I do appreciate the effort.
I am amazed that I cannot find a single working example of code with 3 or 4 loops with each loop having a unique query (by category and number of posts) while passing do_not_duplicate values along each loop. I’ve scoured the forums and the web and I can’t find one example that doesn’t break.
If anyone has a working example they can share I would greatly appreciate it.
Thanks again, everyone!
Forum: Themes and Templates
In reply to: More than two multiple loopsThanks for your response. You have to excuse my ignorance, but I’m just learning PHP yet.
So if i use this for the second loop,
<?php query_posts(array('post__not_in'=>$do_not_duplicate)); if (have_posts()) : while (have_posts()) : the_post(); ?>How do I also restrict by category and number of posts?