takeok
Forum Replies Created
-
Same here. Used to work fine. Completely stopped working about a month ago. BP 1.2.8 and BP Group Email Subscriptions 2.8.1
Not sure why there is always a long delay with this plugin when new WordPress versions are released… anyone can download the daily builds of pre-release versions.
Forum: Plugins
In reply to: [Plugin: Multiple Post Thumbnails] Use outside the loop?Answering my own question, I went into the database and noticed that the featured images are just post attachments. So something along these lines may be the right place to start?
<?php $args = array( 'post_type' => 'attachment', 'numberposts' => -1, 'post_status' => null, 'post_parent' => $post->ID, 'orderby' => 'menu_order', 'order' => 'ASC', 'post_status' => NULL ); $attachs = get_posts($args); if (!empty($attachs)) { foreach( $attachs as $att ) { echo wp_get_attachment_image($att->ID,'post-thumbnail'); } } ?>
Forum: Plugins
In reply to: [Plugin: Multiple Post Thumbnails] Image not displayingredacted
Oops! I just deactivated and reactivated and all is good now.
Forum: Plugins
In reply to: [Plugin: Widget Context] can't target page by URLThank you! The examples should mention NOT using a trailing slash UNLESS it’s being used in combination with a wildcard. I tried everything (or so I thought) and was going mad! I could not get it to work at all. I was using the following:
programs/ohio/
programs/ohio/*but thanks to this post I tried the below and it now works! Thank you!
programs/ohio
programs/ohio/*Forum: Fixing WordPress
In reply to: Nav Bar Menu IssesHas anyone figured out how to remove the
<ul>
when using wp_nav_menu(). I really need to remove the<ul>
(and add my own in the template) in order for my theme to work properly.Forum: Plugins
In reply to: [Plugin: The Events Calendar] how to assign events to a custom post type?Premium eh? That’s understandable but no custom post types + no recurrence = no sale. Not a chance. I’ll check back in 6 months.
Forum: Themes and Templates
In reply to: Pagination with custom post type listing@rafaelxy: Wow… that was exactly my problem! Never would have thought of that. Thank you!
Forum: Themes and Templates
In reply to: Pagination with custom post type listingp.s. here is my actual code
<?php $temp = $wp_query; $wp_query = null; $wp_query = new WP_Query(); $wp_query->query('post_type=carvings' . '&paged=' . $paged . '&posts_per_page=12'); ?> <?php while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?> <!-- output --> <?php endwhile; ?> <?php previous_posts_link(); ?> <?php next_posts_link(); ?> <?php $wp_query = null; $wp_query = $temp; ?>
Forum: Themes and Templates
In reply to: Pagination with custom post type listingI got the prev/next links to show up using this code:
https://weblogtoolscollection.com/archives/2008/04/19/paging-and-custom-wordpress-loops/but when I click them I get a 404. Here are some details:
- I created a custom loop for a custom post type (carvings)
- I’m using the “day and name” permalink structure
- I installed the category pagination fix plugin
- The paging links look like https://mydomain.com/carvings/page/2/
No dice. Very aggravating and I refuse to use ugly links for SEO reasons.
Can someone mark this thread unresolved? Probably only the original posted I guess.
Forum: Plugins
In reply to: [Plugin: The Events Calendar] how to assign events to a custom post type?Shoot… I was hoping this would be a simple thing to do. Using Custom Post Types is so obvious though. Looking forward to seeing that in 1.7. The only thing that has stopped me from using your plugin is that I really hate the idea of having my events mixed in with my blog posts.
So… question… if I go ahead and start using your plugin now… will the adoption of custom post types in 1.7 mean that I will have to re-enter all of my events? Or will the transition to custom post types be seamless?