sparkingproducts
Forum Replies Created
-
Forum: Plugins
In reply to: [Infinite-Scroll] Not working on My Custom Post Type Category+1 on this, I’d like to know if this works on custom post types as well
this is a pretty complicated fix, I’m sure someone could dumb this down but I hope this points the author of the plugin in the right spot if they ever try to tackle it.
In the file gfcptaddonbase.php add this code on line 420. You will need to change the $entry[‘#’] to the number that equals your taxonomy’s tag_ID. They match up in two spots, so in my code I have 34,35,36 and 37. Where it says 34 it needs to match in both spots.
I have 4 taxonomies I’m using with this so it could be quite a bit shorter if you only have 1 or 2. Hopefully someone can take this and wrap it up a bit nicer
} else if ( array_key_exists( 'type', $field ) && $field['type'] == 'multiselect' ) { $term_ids = array(); if (!$entry['34'] == '') { $arr = $entry['34']; $term_ids = explode(",",$arr); foreach ($term_ids as $term_ints) { $final[] = intval($term_ints); } wp_set_object_terms( $entry['post_id'], $final, $taxonomy, true ); } if (!$entry['35'] == '') { $arr = $entry['35']; $term_ids = explode(",",$arr); foreach ($term_ids as $term_ints) { $final[] = intval($term_ints); } wp_set_object_terms( $entry['post_id'], $final, $taxonomy, true ); } if (!$entry['36'] == '') { $arr = $entry['36']; $term_ids = explode(",",$arr); foreach ($term_ids as $term_ints) { $final[] = intval($term_ints); } wp_set_object_terms( $entry['post_id'], $final, $taxonomy, true ); } if (!$entry['37'] == '') { $arr = $entry['37']; $term_ids = explode(",",$arr); foreach ($term_ids as $term_ints) { $final[] = intval($term_ints); } wp_set_object_terms( $entry['post_id'], $final, $taxonomy, true ); }+1 for this, I’ll be looking for a fix today and I’ll keep you updated if I find one.
Forum: Plugins
In reply to: [WordPress Popup - Optin Revolution] Wishlist memberHey Brad,
You can integrate mailchimp and WLM directly so when members sign up to your site they also get signed up for your list.
Forum: Installing WordPress
In reply to: upgrading from 3.2.1 still ends up on 3.2.1I did that, and did the upgrade and it still ends up thinking it’s 3.2.1. It’s gotta be a database thing in my mind.
Forum: Installing WordPress
In reply to: upgrading from 3.2.1 still ends up on 3.2.1Here’s another photo – this one is of the automatic upgrade process for 3.3.1.
http://www.flickr.com/photos/vigorvermin/6643674899you can clearly see it thinks it’s on 3.2.1.
The website is currently unvisible – 404 error
Forum: Installing WordPress
In reply to: upgrading from 3.2.1 still ends up on 3.2.1also notice the jankyness of the top logo area.
Forum: Installing WordPress
In reply to: upgrading from 3.2.1 still ends up on 3.2.1Forum: Fixing WordPress
In reply to: Redirect Loop Permalink Problemoh sorry, I did not realize my posts were going through so I tried again. They weren’t showing up.
Forum: Themes and Templates
In reply to: the_excerpt() text colorthe class name is post-content-excerpt, just so you can find it quicker in the source.
Forum: Themes and Templates
In reply to: the_excerpt() text colormy website is http://www.beinspiredby.com/teen
It would be on the blog page (duh) in the blue box. I’ve tried wrapping it in divs like that and it didn’t work…but I’ll put it back up just so you can see. Thanks for helping
